aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJohannes Löthberg <johannes@kyriasis.com>2015-04-11 19:43:27 +0200
committerJohannes Löthberg <johannes@kyriasis.com>2015-06-08 12:23:08 +0200
commitae607f498737bcc5ff77e515d52edb1e9ab245de (patch)
tree835176c2d41b07b582330cf18e9291233deda26c
downloadpkgbuilds-ae607f498737bcc5ff77e515d52edb1e9ab245de.tar.xz
python-pylibmc: Import
-rw-r--r--.SRCINFO19
-rw-r--r--PKGBUILD22
2 files changed, 41 insertions, 0 deletions
diff --git a/.SRCINFO b/.SRCINFO
new file mode 100644
index 0000000..b06acc1
--- /dev/null
+++ b/.SRCINFO
@@ -0,0 +1,19 @@
+# Generated by makepkg 4.2.1
+# Mon Jun 1 13:54:24 UTC 2015
+pkgbase = python-pylibmc
+ pkgdesc = Quick and small memcached client for Python
+ pkgver = 1.4.1
+ pkgrel = 1
+ url = http://pypi.python.org/pypi/pylibmc
+ arch = i686
+ arch = x86_64
+ license = GPL
+ makedepends = gcc
+ makedepends = zlib
+ depends = python
+ depends = libmemcached
+ source = https://pypi.python.org/packages/source/p/pylibmc/pylibmc-1.4.1.tar.gz
+ md5sums = eaed0ba707abc0eabb1356310febada1
+
+pkgname = python-pylibmc
+
diff --git a/PKGBUILD b/PKGBUILD
new file mode 100644
index 0000000..44f88a9
--- /dev/null
+++ b/PKGBUILD
@@ -0,0 +1,22 @@
+# Maintainer: Johannes Löthberg <johannes@kyriasis.com>
+
+pkgname=python-pylibmc
+pkgver=1.4.1
+pkgrel=1
+
+pkgdesc="Quick and small memcached client for Python"
+url="http://pypi.python.org/pypi/pylibmc"
+arch=("i686" "x86_64")
+license=("GPL")
+
+depends=("python" "libmemcached")
+makedepends=("gcc" "zlib")
+
+source=("https://pypi.python.org/packages/source/p/pylibmc/pylibmc-$pkgver.tar.gz")
+
+md5sums=('eaed0ba707abc0eabb1356310febada1')
+
+package() {
+ cd pylibmc-"$pkgver"
+ python setup.py install --root="$pkgdir"
+}