Skip to content

Instantly share code, notes, and snippets.

@evanpurkhiser
Created May 28, 2013 04:26
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save evanpurkhiser/5660518 to your computer and use it in GitHub Desktop.
Save evanpurkhiser/5660518 to your computer and use it in GitHub Desktop.
# $Id$
pkgname=libnfs
pkgver=0
pkgrel=1
pkgdesc="client library for accessing NFS shares"
arch=('i686' 'x86_64')
url="https://github.com/sahlberg/libnfs"
license=('GPL')
depends=('glibc')
source=("git://github.com/sahlberg/libnfs.git")
sha256sums=('SKIP')
options=(!libtool)
pkgver() {
cd "$pkgname"
git describe --always | sed 's|-|.|g'
}
build() {
cd "$srcdir/$pkgname"
autoreconf -vif
./configure --prefix=/usr
make
}
package() {
cd "$srcdir/$pkgname"
make DESTDIR="$pkgdir" install
}
@sahlberg
Copy link

I have uploaded and tagged a new release 1.6.0.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment