diff options
author | Eivind Uggedal <eivind@uggedal.com> | 2014-07-31 06:23:08 +0000 |
---|---|---|
committer | Eivind Uggedal <eivind@uggedal.com> | 2014-07-31 06:24:11 +0000 |
commit | 0de0b16d755ea41dec46e4d834ecfd769c010685 (patch) | |
tree | 9b71441583286d169b775d7cd6b6074217489b47 /main/py-larch | |
parent | 4af91c1de85a5da6437f5773fce179dab309a8ae (diff) | |
download | aports-0de0b16d755ea41dec46e4d834ecfd769c010685.tar.bz2 aports-0de0b16d755ea41dec46e4d834ecfd769c010685.tar.xz |
main/py-larch: moved from testing
Diffstat (limited to 'main/py-larch')
-rw-r--r-- | main/py-larch/APKBUILD | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/main/py-larch/APKBUILD b/main/py-larch/APKBUILD new file mode 100644 index 0000000000..4f07b5f83c --- /dev/null +++ b/main/py-larch/APKBUILD @@ -0,0 +1,31 @@ +# Maintainer: Eivind Uggedal <eivind@uggedal.com> +pkgname=py-larch +_pkgname=${pkgname#py-} +pkgver=1.20131130 +pkgrel=0 +pkgdesc="Copy-on-write B-tree data structure" +url="http://liw.fi/larch/" +arch="noarch" +license="GPL3+" +depends="python py-tracing py-cliapp py-ttystatus" +depends_dev="" +makedepends="py-setuptools" +install="" +subpackages="" +source="http://code.liw.fi/debian/pool/main/p/python-larch/python-larch_$pkgver.orig.tar.gz" + +_builddir="$srcdir"/$_pkgname-$pkgver + +build() { + cd "$_builddir" + python setup.py build || return 1 +} + +package() { + cd "$_builddir" + python setup.py install --prefix=/usr --root="$pkgdir" || return 1 +} + +md5sums="766d14840b3872de92761a32ecbe80ef python-larch_1.20131130.orig.tar.gz" +sha256sums="2717e851bde45b66e8b2d44181861f24135d185abab8111119857943d3b5cac1 python-larch_1.20131130.orig.tar.gz" +sha512sums="e661fa29043a5254eb3615f0eb54f6afbaf59020607bb72f621083e9f6acfbe92b1c978ce2be73336d8984a4a64ce6d0153556f0af0ca63ad53aff40f785d052 python-larch_1.20131130.orig.tar.gz" |