blob: 37192330a471959525b5129aef9c2f5962990f3a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
# $Id: PKGBUILD 49787 2011-06-21 05:02:34Z foutrelis $
# Maintainer: Evangelos Foutras <foutrelis@gmail.com>
pkgname=libmemcached
pkgver=0.50
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)
md5sums=('c8627014a37cd821cf93317b8de6f9f8')
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:
|