mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-24 02:22:13 +08:00
28 lines
720 B
Bash
28 lines
720 B
Bash
# Contributor from Arch: Evangelos Foutras <evangelos@foutrelis.com>
|
|
|
|
pkgname=libmemcached
|
|
pkgver=1.0.18
|
|
pkgrel=1
|
|
pkgdesc="C and C++ client library to the memcached server"
|
|
arch=('x86_64')
|
|
url="http://libmemcached.org/"
|
|
license=('GPL')
|
|
depends=('glibc' 'libsasl' 'libevent')
|
|
makedepends=('perl' 'memcached')
|
|
options=('!libtool')
|
|
source=(http://launchpad.net/$pkgname/1.0/$pkgver/+download/$pkgname-$pkgver.tar.gz)
|
|
sha512sums=('2d95fea63b8b6dc7ded42c3a88a54aad74d5a1d417af1247144dae4a88c3b639a3aabc0c2b66661ff69a7609a314efaaae236e10971af9c428a4bca0a0101585')
|
|
|
|
build() {
|
|
cd "$srcdir/$pkgname-$pkgver"
|
|
|
|
./configure --prefix=/usr
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd "$srcdir/$pkgname-$pkgver"
|
|
|
|
make DESTDIR="$pkgdir" install
|
|
}
|