mirror of
https://github.com/mac-a-r0ni/crux-xfce4.git
synced 2025-02-02 10:42:21 +01:00
22 lines
387 B
Plaintext
22 lines
387 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.2
|
||
|
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
|
||
|
|
||
|
}
|