mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-02-19 16:05:35 +08:00
27 lines
687 B
Bash
27 lines
687 B
Bash
|
# Maintainer: Neophytos Kolokotronis <tetris4@gmail.com>
|
||
|
# contributions from Arch: https://projects.archlinux.org/svntogit/community.git/tree/trunk?h=packages/libnfs
|
||
|
|
||
|
pkgname=libnfs
|
||
|
pkgver=1.7.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")
|
||
|
sha256sums=('724e0b15cb2099ab3bbdb8456eaab54bc6d1de76da4b4f3251323471523e2114')
|
||
|
|
||
|
build() {
|
||
|
cd "$pkgname-$pkgname-$pkgver"
|
||
|
|
||
|
autoreconf -vif
|
||
|
./configure --prefix=/usr
|
||
|
make
|
||
|
}
|
||
|
|
||
|
package() {
|
||
|
cd "$pkgname-$pkgname-$pkgver"
|
||
|
make DESTDIR="$pkgdir" install
|
||
|
}
|