# $Id: PKGBUILD 55487 2011-09-13 04:57:50Z foutrelis $ # Maintainer: Evangelos Foutras pkgname=libmemcached pkgver=0.52 pkgrel=1 pkgdesc="C and C++ client library to the memcached server" arch=('i686' 'x86_64') url="http://libmemcached.org/" license=('GPL') depends=('glibc') makedepends=('perl') options=('!libtool') source=(http://launchpad.net/$pkgname/1.0/$pkgver/+download/$pkgname-$pkgver.tar.gz) sha1sums=('5219e261c84b8960676add5968a913a12caccd4a') build() { cd "$srcdir/$pkgname-$pkgver" # memcached is needed only in `make test', therefore we pass # --without-memcached to the configure script to skip it ./configure --prefix=/usr --without-memcached make } package() { cd "$srcdir/$pkgname-$pkgver" make DESTDIR="$pkgdir" install } # vim:set ts=2 sw=2 et: