mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-11-02 01:11:31 +01:00
31 lines
1.0 KiB
Plaintext
31 lines
1.0 KiB
Plaintext
# Contributor: Francesco Colista <francesco.colista@gmail.com>
|
|
# Maintainer: Fabian Affolter <fabian@affolter-engineering.ch>
|
|
pkgname=py-msgpack
|
|
_pkgname=msgpack-python
|
|
pkgver=0.4.2
|
|
pkgrel=0
|
|
pkgdesc="A Python module for MessagePack serialization/deserialization"
|
|
url="http://pypi.python.org/pypi/msgpack-python/"
|
|
arch="all"
|
|
license="ASL 2.0"
|
|
depends="python"
|
|
depends_dev=""
|
|
makedepends="python-dev py-setuptools"
|
|
subpackages=""
|
|
source="http://pypi.python.org/packages/source/${_pkgname:0:1}/$_pkgname/$_pkgname-$pkgver.tar.gz"
|
|
|
|
_builddir="$srcdir"/$_pkgname-$pkgver
|
|
build () {
|
|
cd "$_builddir"
|
|
python setup.py build || return 1
|
|
}
|
|
|
|
package() {
|
|
cd "$_builddir"
|
|
python setup.py install --root="$pkgdir" || return 1
|
|
}
|
|
|
|
md5sums="e3a0fdfd864c72c958bb501d39b39caf msgpack-python-0.4.2.tar.gz"
|
|
sha256sums="0476e8fdd79e5b648b349bd0edebf06e41271ee29421ef7adb12cdbe55dac2a9 msgpack-python-0.4.2.tar.gz"
|
|
sha512sums="73cae17c08d34bd721828b1759b998372600e26fdfc62c16cb571b5cb41bf1a65ef98af65db0e48da229461f835aa17a547b03b25f407f570e493d8f363ab507 msgpack-python-0.4.2.tar.gz"
|