mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-05-04 20:06:43 +02:00
testing/py-blinker: new aport
This commit is contained in:
parent
e8bbdd3619
commit
940bcf3ecc
38
testing/py-blinker/APKBUILD
Normal file
38
testing/py-blinker/APKBUILD
Normal file
@ -0,0 +1,38 @@
|
||||
# Contributor: William Pitcock <nenolod@dereferenced.org>
|
||||
# Maintainer: William Pitcock <nenolod@dereferenced.org>
|
||||
pkgname=py-blinker
|
||||
pkgver=1.2
|
||||
pkgrel=0
|
||||
pkgdesc="Fast, simple object-to-object and broadcast signalling"
|
||||
url="http://pypi.python.org/pypi/blinker"
|
||||
arch="noarch"
|
||||
license="MIT"
|
||||
depends="python"
|
||||
depends_dev=""
|
||||
makedepends="python-dev py-setuptools"
|
||||
install=""
|
||||
subpackages=""
|
||||
source="http://pypi.python.org/packages/source/b/blinker/blinker-$pkgver.tar.gz"
|
||||
|
||||
_builddir="$srcdir"/blinker-$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="6b0a876f0778084e97935a951ea96ded blinker-1.2.tar.gz"
|
||||
Loading…
x
Reference in New Issue
Block a user