# $Id: PKGBUILD 56051 2011-09-29 17:22:52Z foutrelis $ # Maintainer: Evangelos Foutras pkgname=libmemcached pkgver=0.53 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=('52e0422a8916814b7c416d1671018e9aab50e9cc') 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: