diff options
author | Nicolás Reynolds <fauno@kiwwwi.com.ar> | 2012-11-18 17:13:56 -0300 |
---|---|---|
committer | Nicolás Reynolds <fauno@kiwwwi.com.ar> | 2012-11-18 17:13:56 -0300 |
commit | e5e6eaf7e3cad31a74862656283728197b715178 (patch) | |
tree | 2b6c997f1bf5d936019a1dfc741b192208270e1b /pcr/pysheng/PKGBUILD | |
parent | 7eff80609dcc365658c94f899d4a3a298e8fb5dd (diff) | |
parent | dcb01f130dac1b244e0ed9fe0041d92a130ab427 (diff) | |
download | abslibre-e5e6eaf7e3cad31a74862656283728197b715178.tar.gz abslibre-e5e6eaf7e3cad31a74862656283728197b715178.tar.bz2 abslibre-e5e6eaf7e3cad31a74862656283728197b715178.zip |
Merge branch 'master' of ssh://gparabola/srv/git/abslibre
Diffstat (limited to 'pcr/pysheng/PKGBUILD')
-rw-r--r-- | pcr/pysheng/PKGBUILD | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/pcr/pysheng/PKGBUILD b/pcr/pysheng/PKGBUILD new file mode 100644 index 000000000..4cbdf5d38 --- /dev/null +++ b/pcr/pysheng/PKGBUILD @@ -0,0 +1,24 @@ +# Contributor: mutlu_inek@yahoo.de +# Maintainer : Parabola GNU / Linux-libre Aurelien Desbrieres <aurelien@cwb.io> + +pkgname=pysheng +pkgver=0.1 +pkgrel=1 +pkgdesc="CLI and GUI program to download pages from Google Books as PNG images" +arch=(i686 x86_64) +url="https://code.google.com/p/pysheng/" +license=('GPL') +depends=('python2') +makedepends=() +optdepends=('python2-reportlab: GUI') +provides=() +conflicts=() +replaces=() +options=() +source=(http://pysheng.googlecode.com/files/$pkgname-$pkgver.tgz) + +package() { + cd $pkgname-$pkgver + python2 setup.py install --root="$pkgdir/" --optimize=1 +} + |