mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-24 10:32:13 +08:00
26 lines
579 B
Bash
26 lines
579 B
Bash
# Maintainer: UtG <utg[dot]chakra.linux[at]gmail[dot]com>
|
|
|
|
pkgname=libnfs
|
|
pkgver=1.9.3
|
|
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")
|
|
sha256sums=('9d1c988065b373ea25e195aedff4c33ca949fee41c61bdb38a26908bb618315a')
|
|
|
|
build() {
|
|
cd "$pkgname-$pkgname-$pkgver"
|
|
|
|
autoreconf -vif
|
|
./configure --prefix=/usr
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd "$pkgname-$pkgname-$pkgver"
|
|
make DESTDIR="$pkgdir" install
|
|
}
|