liborcus.guncellendi
This commit is contained in:
parent
f7af9cf247
commit
32829d5054
|
@ -1,24 +1,22 @@
|
||||||
# Description: Genel amaçlı formül çözümleyici ve yorumlayıcı
|
# Description: Genel amaçlı formül çözümleyici ve yorumlayıcı
|
||||||
# URL: https://gitlab.com/ixion/ixion/blob/master/README.md
|
# URL: https://gitlab.com/ixion/ixion/blob/master/README.md
|
||||||
# Packager: Cihan Alkan
|
# Packager: Cihan Alkan
|
||||||
# Depends on: boost mdds
|
# Depends on: boost mdds python3
|
||||||
|
|
||||||
name=libixion
|
name=libixion
|
||||||
version=0.13.0
|
version=0.12.2
|
||||||
release=1
|
release=1
|
||||||
|
|
||||||
source=(http://kohei.us/files/ixion/src/libixion-0.13.0.tar.xz)
|
source=(http://kohei.us/files/ixion/src/libixion-$version.tar.xz)
|
||||||
|
|
||||||
build() {
|
build() {
|
||||||
cd $name-$version
|
cd $name-$version
|
||||||
./configure \
|
[ ! -f /usr/lib/pkgconfig/python3.pc ] && ln -s /usr/lib/pkgconfig/python-3.5.pc /usr/lib/pkgconfig/python3.pc
|
||||||
--prefix=/usr \
|
./configure \
|
||||||
--sysconfdir=/etc \
|
--prefix=/usr \
|
||||||
--mandir=/usr/share/man \
|
--disable-static
|
||||||
--localstatedir=/var \
|
make
|
||||||
--disable-python \
|
|
||||||
|| return 1
|
|
||||||
make || return 1
|
|
||||||
make DESTDIR=$PKG install
|
make DESTDIR=$PKG install
|
||||||
install -Dm644 LICENSE "$PKG/usr/share/licenses/$name/LICENSE"
|
install -Dm644 LICENSE "$PKG/usr/share/licenses/$name/LICENSE"
|
||||||
|
rm -f /usr/lib/pkgconfig/python3.pc
|
||||||
}
|
}
|
||||||
|
|
|
@ -10,8 +10,10 @@ release=1
|
||||||
source=(https://kohei.us/files/orcus/src/$name-$version.tar.xz)
|
source=(https://kohei.us/files/orcus/src/$name-$version.tar.xz)
|
||||||
|
|
||||||
build() {
|
build() {
|
||||||
cd $name-$version
|
cd $name-$version
|
||||||
./configure --prefix=/usr
|
[ ! -f /usr/lib/pkgconfig/python3.pc ] && ln -s /usr/lib/pkgconfig/python-3.5.pc /usr/lib/pkgconfig/python3.pc
|
||||||
make
|
./configure --prefix=/usr
|
||||||
make DESTDIR=$PKG install
|
make
|
||||||
|
make DESTDIR=$PKG install
|
||||||
|
rm -f /usr/lib/pkgconfig/python3.pc
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue