add python2-hoep

This commit is contained in:
mutantmonkey 2014-08-02 00:07:58 -07:00
commit 7232b40284
2 changed files with 34 additions and 0 deletions

15
.SRCINFO Normal file
View file

@ -0,0 +1,15 @@
pkgbase = python2-hoep
pkgdesc = A Python binding for the Hoedown Markdown library.
pkgver = 1.0.2
pkgrel = 1
url = https://github.com/Anomareh/Hoep
arch = i686
arch = x86_64
license = BSD
depends = python2>=2.7
options = !emptydirs
source = https://pypi.python.org/packages/source/h/hoep/hoep-1.0.2.tar.gz
sha256sums = 712d6f890138e4f785bcfa8147f7e8eac802ae5543f533edbd810c5beabf7c7a
pkgname = python2-hoep

19
PKGBUILD Normal file
View file

@ -0,0 +1,19 @@
# Maintainer: mutantmonkey <aur@mutantmonkey.in>
pkgname=python2-hoep
pkgver=1.0.2
pkgrel=1
pkgdesc="A Python binding for the Hoedown Markdown library."
arch=('i686' 'x86_64')
url="https://github.com/Anomareh/Hoep"
license=('BSD')
depends=('python2>=2.7')
options=(!emptydirs)
source=("https://pypi.python.org/packages/source/h/hoep/hoep-${pkgver}.tar.gz")
sha256sums=('712d6f890138e4f785bcfa8147f7e8eac802ae5543f533edbd810c5beabf7c7a')
package() {
cd "$srcdir/hoep-$pkgver"
python2 setup.py install --root="$pkgdir/" --optimize=1
}
# vim:set ts=2 sw=2 et: