libixion.guncellendi

This commit is contained in:
milisbir 2017-09-10 20:46:18 +03:00
parent 9b6842b91f
commit 3eb3359293
2 changed files with 41 additions and 0 deletions

View File

@ -0,0 +1,24 @@
# Description: Genel amaçlı formül çözümleyici ve yorumlayıcı
# URL: https://gitlab.com/ixion/ixion/blob/master/README.md
# Packager: Cihan Alkan
# Depends on: boost mdds
name=libixion
version=0.13.0
release=1
source=(http://kohei.us/files/ixion/src/libixion-0.13.0.tar.xz)
build() {
cd $name-$version
./configure \
--prefix=/usr \
--sysconfdir=/etc \
--mandir=/usr/share/man \
--localstatedir=/var \
--disable-python \
|| return 1
make || return 1
make DESTDIR=$PKG install
install -Dm644 LICENSE "$PKG/usr/share/licenses/$name/LICENSE"
}

View File

@ -0,0 +1,17 @@
# Description: Çok boyutlu veri yapıları ve indeksleme algoritmalarının bir koleksiyonu
# URL: https://gitlab.com/mdds/mdds
# Packager: Cihan Alkan
# Depends on: boost
name=mdds
version=1.2.3
release=1
source=(https://kohei.us/files/mdds/src/$name-$version.tar.bz2)
build() {
cd $name-$version
./autogen.sh --prefix=/usr
make DESTDIR=$PKG install
install -Dm644 LICENSE "$PKG/usr/share/licenses/$name/LICENSE"
}