diff options
author | Eivind Uggedal <eivind@uggedal.com> | 2014-07-31 05:59:53 +0000 |
---|---|---|
committer | Eivind Uggedal <eivind@uggedal.com> | 2014-07-31 05:59:53 +0000 |
commit | 651c3a823f9f2cdaa80eb03f7e141111ffdec1c0 (patch) | |
tree | e86cbe0082f0bf9ed64498240d1b0585e4a5a52f /testing | |
parent | 0c6679fb0d31889aa2d2fae23bcd84cfddd6317e (diff) | |
download | aports-651c3a823f9f2cdaa80eb03f7e141111ffdec1c0.tar.bz2 aports-651c3a823f9f2cdaa80eb03f7e141111ffdec1c0.tar.xz |
testing/py-ttystatus: new aport
Diffstat (limited to 'testing')
-rw-r--r-- | testing/py-ttystatus/APKBUILD | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/testing/py-ttystatus/APKBUILD b/testing/py-ttystatus/APKBUILD new file mode 100644 index 0000000000..9b6c508c76 --- /dev/null +++ b/testing/py-ttystatus/APKBUILD @@ -0,0 +1,31 @@ +# Maintainer: Eivind Uggedal <eivind@uggedal.com> +pkgname=py-ttystatus +_pkgname=${pkgname#py-} +pkgver=0.23 +pkgrel=0 +pkgdesc="Terminal progress bar and status output for command line" +url="http://liw.fi/ttystatus/" +arch="noarch" +license="GPL3+" +depends="python" +depends_dev="" +makedepends="py-setuptools" +install="" +subpackages="" +source="http://code.liw.fi/debian/pool/main/p/python-ttystatus/python-ttystatus_$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="bfc43748b5a569a0d5e283b2e78814a8 python-ttystatus_0.23.orig.tar.gz" +sha256sums="1ecd58dff0049fdccedb6cd41ff0ddc51971c943e8d1887f8c027ae9e3aeb17a python-ttystatus_0.23.orig.tar.gz" +sha512sums="29dd9ee0a063b4f49c72a1f08acfe80f4db9b3a374b1424a98926d25e22c8df0ed89441997322556edaad03a339dafdbf874a1247f095f1f857ef04f90b8a040 python-ttystatus_0.23.orig.tar.gz" |