2019-08-11 11:14:04 +02:00
|
|
|
# Description: File import filter library for spreadsheet documents.
|
|
|
|
# URL: https://gitlab.com/orcus/orcus
|
|
|
|
# Maintainer: Tim Biermann, tbier at posteo dot de
|
2023-08-17 19:18:46 +02:00
|
|
|
# Depends on: libixion
|
2019-08-11 11:14:04 +02:00
|
|
|
|
|
|
|
name=liborcus
|
2023-11-11 12:54:08 +01:00
|
|
|
version=0.19.2
|
2023-09-29 18:04:35 +02:00
|
|
|
release=1
|
2023-01-28 13:10:14 +01:00
|
|
|
source=(https://kohei.us/files/orcus/src/$name-$version.tar.xz
|
|
|
|
rpath.patch.0
|
|
|
|
libtool.patch.0
|
2023-02-11 09:45:48 +01:00
|
|
|
liborcus_newline.patch.1)
|
2019-08-11 11:14:04 +02:00
|
|
|
|
|
|
|
build() {
|
|
|
|
cd $name-$version
|
2022-01-03 14:30:33 +01:00
|
|
|
|
2023-01-28 13:10:14 +01:00
|
|
|
patch -Np0 -i $SRC/rpath.patch.0
|
|
|
|
patch -Np0 -i $SRC/libtool.patch.0
|
|
|
|
patch -Np1 -i $SRC/liborcus_newline.patch.1
|
|
|
|
|
2019-08-11 11:14:04 +02:00
|
|
|
./configure --prefix=/usr --disable-python
|
|
|
|
make
|
|
|
|
make DESTDIR=$PKG install
|
|
|
|
}
|