libnfs.paketlendi

This commit is contained in:
milisbir 2017-10-24 07:13:05 +03:00
parent 825294a65c
commit e75fe78706
2 changed files with 33 additions and 0 deletions

View File

@ -0,0 +1,16 @@
# Description: Python libnfs bağlamları
# URL: https://github.com/sahlberg/libnfs-python
# Packager: milisarge
# Depends on: python3 python3-setuptools python python-setuptools libnfs swig
name=libnfs-python
version=git
release=1
source=(https://github.com/sahlberg/$name/archive/master.zip::$name-${version}-$release.tar.gz)
build() {
cd $name-master
python2 setup.py install --prefix=/usr --root=$PKG
python3 setup.py install --prefix=/usr --root=$PKG
}

View File

@ -0,0 +1,17 @@
# Description: NFS paylaşımlarına erişim için istemci kütüphanesi
# URL: https://github.com/sahlberg/libnfs
# Packager: milisarge
# Depends on:
name=libnfs
version=2.0.0
release=1
source=(https://github.com/sahlberg/libnfs/archive/libnfs-2.0.0.tar.gz)
build() {
cd "$name-$name-$version"
autoreconf -vif
./configure --prefix=/usr
make
make DESTDIR="$PKG" install
}