mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-24 02:22:13 +08:00
24 lines
584 B
Bash
24 lines
584 B
Bash
pkgname=libnfs
|
|
pkgver=1.10.0
|
|
pkgrel=1
|
|
pkgdesc="client library for accessing NFS shares"
|
|
arch=('x86_64')
|
|
url="https://github.com/sahlberg/libnfs"
|
|
license=('GPL')
|
|
depends=('glibc')
|
|
source=("https://github.com/sahlberg/$pkgname/archive/$pkgname-$pkgver.tar.gz")
|
|
sha512sums=('9d1bdd2e193f189841dd915d5a4d0965cfd0c597372fa82b12377c4da1f6b5ec022bd0cddfe46dda1a4ac3de3f31eed73cb7dcf832469a4d292e05401b8fb247')
|
|
|
|
build() {
|
|
cd "$pkgname-$pkgname-$pkgver"
|
|
|
|
autoreconf -vif
|
|
./configure --prefix=/usr
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd "$pkgname-$pkgname-$pkgver"
|
|
make DESTDIR="$pkgdir" install
|
|
}
|