mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-12-08 23:03:46 +00:00
18 lines
684 B
Bash
18 lines
684 B
Bash
# Maintainer: Geoffroy Carrier <geoffroy.carrier@aur.archlinux.org>
|
|
# Contributor: Nathan Jones <nathanj@insightbb.com>
|
|
pkgname=python-memcached
|
|
pkgver=1.44
|
|
pkgrel=1
|
|
pkgdesc="A Python interface to memcached"
|
|
depends=('python')
|
|
makedepends=('setuptools')
|
|
source=(ftp://ftp.tummy.com/pub/$pkgname/$pkgname-$pkgver.tar.gz LICENSE)
|
|
url="ftp://ftp.tummy.com/pub/python-memcached/"
|
|
license=('Python')
|
|
arch=('i686' 'x86_64')
|
|
build() {
|
|
cd "$srcdir"/$pkgname-$pkgver
|
|
python setup.py install --root=$startdir/pkg || return 1
|
|
install -Dm644 ${srcdir}/LICENSE ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
|
|
}
|
|
md5sums=('03c74e39a9598f27ba5e3c3f714d04cf' '5286ea4c34766a357085694e0984f116')
|