mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-05-04 20:06:43 +02:00
testing/py-stencil: new aport
A Python module to creates files and directories from templates https://github.com/trilan/stencil
This commit is contained in:
parent
68a9b96939
commit
7ff3e291e4
41
testing/py-stencil/APKBUILD
Normal file
41
testing/py-stencil/APKBUILD
Normal file
@ -0,0 +1,41 @@
|
||||
# Contributor: Fabian Affolter <fabian@affolter-engineering.ch>
|
||||
# Maintainer: Fabian Affolter <fabian@affolter-engineering.ch>
|
||||
pkgname=py-stencil
|
||||
_pkgname=Stencil
|
||||
pkgver=0.2.1
|
||||
pkgrel=0
|
||||
pkgdesc="A Python module to creates files and directories from templates"
|
||||
url="https://github.com/trilan/stencil"
|
||||
arch="noarch"
|
||||
license="BSD"
|
||||
depends="python"
|
||||
depends_dev=""
|
||||
makedepends="python-dev py-setuptools"
|
||||
install=""
|
||||
subpackages=""
|
||||
source="http://pypi.python.org/packages/source/${_pkgname:0:1}/$_pkgname/$_pkgname-$pkgver.tar.gz"
|
||||
|
||||
_builddir="$srcdir"/$_pkgname-$pkgver
|
||||
prepare() {
|
||||
local i
|
||||
cd "$_builddir"
|
||||
for i in $source; do
|
||||
case $i in
|
||||
*.patch) msg $i; patch -p1 -i "$srcdir"/$i || return 1;;
|
||||
esac
|
||||
done
|
||||
}
|
||||
|
||||
build() {
|
||||
cd "$_builddir"
|
||||
python setup.py build || return 1
|
||||
}
|
||||
|
||||
package() {
|
||||
cd "$_builddir"
|
||||
python setup.py install --prefix=/usr --root="$pkgdir" || return 1
|
||||
}
|
||||
|
||||
md5sums="a4146fde69df3ee95b4d9c7a596f3fd3 Stencil-0.2.1.tar.gz"
|
||||
sha256sums="c68196d1f0b27a2981d98c61d28de5777c766f10356207dd8f068e2469c2c2ac Stencil-0.2.1.tar.gz"
|
||||
sha512sums="18d42d8b30141a55074ea8c6dcd0d07bcdd65f3effe7eef2fa525b6580e3cef30a28ee22a61c94432316a898ed2fe6408c12279be9e8c82108ea220bf79b549c Stencil-0.2.1.tar.gz"
|
||||
Loading…
x
Reference in New Issue
Block a user