mirror of
https://github.com/mac-a-r0ni/crux-xfce4.git
synced 2025-01-15 20:12:20 +01:00
23 lines
412 B
Plaintext
23 lines
412 B
Plaintext
# Description: Client library for accessing NFS shares
|
|
# URL: https://github.com/sahlberg/libnfs
|
|
# Maintainer: mac-a-r0ni, j at lngn dot net
|
|
# Depends on:
|
|
|
|
name=libnfs
|
|
version=5.0.3
|
|
release=1
|
|
source=(https://github.com/sahlberg/$name/archive/$name-$version.tar.gz)
|
|
|
|
build() {
|
|
cd $name-$name-$version
|
|
|
|
autoreconf -ivf
|
|
./configure \
|
|
--prefix=/usr
|
|
|
|
make
|
|
make DESTDIR=$PKG install
|
|
|
|
rm -rf $PKG/usr/lib/*.la
|
|
}
|