blob: 3ac475605f9c340f6dda91f8d6d467382abdb682 (
plain)
1 # Description: filter for old StarOffice documents(.sdc, .sdw, ...) based on librevenge
2 # URL: https://github.com/fosnola/libstaroffice
3 # Maintainer: Tim Biermann, tbier at posteo dot de
4 # Depends on: librevenge
5
6 name=libstaroffice
7 version=0.0.7
8 release=1
9 source=(https://github.com/fosnola/$name/releases/download/$version/$name-$version.tar.xz)
10
11 build() {
12 cd $name-$version
13 ./configure --prefix=/usr \
14 --without-docs
15 make
16 make DESTDIR=$PKG install
17 }
|