1
0
Fork 0
mirror of https://gitlab.alpinelinux.org/alpine/aports.git synced 2025-07-24 11:45:18 +03:00
aports/testing/py-lxc-python2/APKBUILD
2017-02-21 15:42:50 +00:00

26 lines
798 B
Text

# Maintainer: Leonardo Arena <rnalrd@alpinelinux.org>
_pkgname=lxc-python2
pkgname=py-${_pkgname}
pkgver=0.1
pkgrel=0
pkgdesc="Python2 bindings for LXC"
url="https://pypi.python.org/pypi/lxc-python2"
arch="all"
license="LGPLv2+"
depends=""
makedepends="lxc-dev python-dev py-setuptools"
subpackages=""
source="https://files.pythonhosted.org/packages/source/${_pkgname:0:1}/$_pkgname/$_pkgname-$pkgver.zip"
builddir="$srcdir/$_pkgname-$pkgver"
build() {
cd "$builddir"
python setup.py build || return 1
}
package() {
cd "$builddir"
python setup.py install --prefix=/usr --root="$pkgdir" || return 1
}
sha512sums="e2374373dbf0567209f028df6c8dcf66b1f06be89934824c9663104e4fed9341f2b68d89011624f87de0e4e2702affaf1f7b17987bb179d1d945c2e04f8aa1bc lxc-python2-0.1.zip"