mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-08-06 05:47:13 +02:00
testing/py-crc16: new aport
Library for calculating CRC16 https://pypi.python.org/pypi/crc16
This commit is contained in:
parent
cd6cb46e05
commit
c7fa068c2c
41
testing/py-crc16/APKBUILD
Normal file
41
testing/py-crc16/APKBUILD
Normal file
@ -0,0 +1,41 @@
|
|||||||
|
# Contributor: Fabian Affolter <fabian@affolter-engineering.ch>
|
||||||
|
# Maintainer: Fabian Affolter <fabian@affolter-engineering.ch>
|
||||||
|
pkgname=py-crc16
|
||||||
|
_pkgname=crc16
|
||||||
|
pkgver=0.1.1
|
||||||
|
pkgrel=0
|
||||||
|
pkgdesc="A Python library for calculating CRC16"
|
||||||
|
url="http://bitbucket.org/kmike/vkontakte/"
|
||||||
|
arch="all"
|
||||||
|
license="MIT"
|
||||||
|
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="3cb6a4f5fd10a58c09792e321cc467e5 crc16-0.1.1.tar.gz"
|
||||||
|
sha256sums="c1f86aa0390f4baf07d2631b16b979580eae1d9a973a826ce45353a22ee8d396 crc16-0.1.1.tar.gz"
|
||||||
|
sha512sums="45d5e8e13b1ac5f885b40516872a9233514f09aa8990915904b214eec2ef6084016f8f0c15bb411aaa1ffc32e8207020916f723e48eee726a7e6989901c9e65d crc16-0.1.1.tar.gz"
|
Loading…
Reference in New Issue
Block a user