mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-07-15 20:25:17 +03:00
this marginally increases install speed by not checking if it needs a rebuild. also remove --prefix=/usr as it defaults to /usr already. might break a build or two, will fix later
26 lines
752 B
Text
26 lines
752 B
Text
# Maintainer: Martijn Braam <martijn@brixit.nl>
|
|
pkgname=py3-cobs
|
|
_pyname=cobs
|
|
pkgver=1.2.0
|
|
pkgrel=1
|
|
pkgdesc="Consistent Overhead Byte Stuffing"
|
|
options="!check" # Testsuite runs 0 tests
|
|
url="https://pypi.org/project/cobs/"
|
|
arch="all"
|
|
license="MIT"
|
|
depends="python3"
|
|
makedepends="py3-setuptools python3-dev"
|
|
_pypiprefix="${_pyname%${_pyname#?}}"
|
|
source="https://files.pythonhosted.org/packages/source/$_pypiprefix/$_pyname/$_pyname-$pkgver.tar.gz"
|
|
builddir=$srcdir/$_pyname-$pkgver
|
|
|
|
build() {
|
|
python3 setup.py build
|
|
}
|
|
|
|
package() {
|
|
python3 setup.py install --skip-build --root="$pkgdir"
|
|
}
|
|
sha512sums="
|
|
92a3324fd07dd75ce84049f412bd3f1e9cfc42864672eea09f2d106a942dc0dab8bef1812a1288b92a70897f73171919d4b4b917d9155eb193606f8159d34405 cobs-1.2.0.tar.gz
|
|
"
|