mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-08-26 17:01:34 +02:00
56 lines
1.3 KiB
Plaintext
56 lines
1.3 KiB
Plaintext
# Contributor: Paul Kilar <pkilar@gmail.com>
|
|
# Contributor: Stefan Wagner <stw@bit-strickerei.de>
|
|
# Maintainer: Paul Kilar <pkilar@gmail.com>
|
|
pkgname=py-pystache
|
|
_realname=pystache
|
|
pkgver=0.5.4
|
|
pkgrel=0
|
|
pkgdesc="Pystache is a Python implementation of Mustache."
|
|
url="https://pypi.python.org/pypi/pystache"
|
|
arch="noarch"
|
|
license="MIT"
|
|
options="!check"
|
|
makedepends="python2-dev python3-dev py-setuptools"
|
|
subpackages="py2-${pkgname#py-}:_py2 py3-${pkgname#py-}:_py3"
|
|
source="https://files.pythonhosted.org/packages/source/${_realname:0:1}/$_realname/$_realname-$pkgver.tar.gz"
|
|
builddir="$srcdir"/$_realname-$pkgver
|
|
|
|
prepare() {
|
|
default_prepare
|
|
cp -r "$builddir" "$builddir-py3"
|
|
}
|
|
|
|
build() {
|
|
cd "$builddir"
|
|
python2 setup.py build
|
|
cd "$builddir-py3"
|
|
python3 setup.py build
|
|
}
|
|
|
|
package() {
|
|
mkdir -p "$pkgdir"
|
|
}
|
|
|
|
_py2() {
|
|
replaces="$pkgname"
|
|
depends="${depends//py-/py2-}"
|
|
cd "$builddir"
|
|
_py python2
|
|
}
|
|
|
|
_py3() {
|
|
depends="${depends//py-/py3-}"
|
|
cd "$builddir-py3"
|
|
_py python3
|
|
}
|
|
|
|
_py() {
|
|
local python="$1"
|
|
pkgdesc="$pkgdesc (for $python)"
|
|
depends="$depends $python"
|
|
install_if="$pkgname=$pkgver-r$pkgrel $python"
|
|
|
|
$python setup.py install --prefix=/usr --root="$subpkgdir"
|
|
}
|
|
sha512sums="4ac325e1431f58f740218c9ec309821db82d89989ef4ca7fc3536dea0ef1c90e8e85ebaa7df27f33129ca02252b84bcbd7429a1ed999b496f62f174dd66502cb pystache-0.5.4.tar.gz"
|