1
0
Fork 0
mirror of https://gitlab.alpinelinux.org/alpine/aports.git synced 2025-07-24 11:45:18 +03:00
aports/testing/py3-puremagic/APKBUILD
2023-04-25 07:05:15 +00:00

30 lines
815 B
Text

# Maintainer: Patrycja Rosa <alpine@ptrcnull.me>
pkgname=py3-puremagic
pkgver=1.15
pkgrel=1
pkgdesc="Pure python implementation of identifying files based off their magic numbers"
url="https://github.com/cdgriffith/puremagic"
arch="noarch"
license="MIT"
depends="python3"
makedepends="py3-setuptools"
checkdepends="py3-pytest py3-pytest-cov"
subpackages="$pkgname-pyc"
source="https://github.com/cdgriffith/puremagic/archive/refs/tags/$pkgver/puremagic-$pkgver.tar.gz"
builddir="$srcdir/puremagic-$pkgver"
build() {
python3 setup.py build
}
check() {
python3 -m pytest
}
package() {
python3 setup.py install --prefix=/usr --root="$pkgdir"
}
sha512sums="
46d8ad7e2aa309558e37589b8a9508ef4156a5d6768b738df5f8539cb9edc12d83ac46a2fd46ef48d9323c73dfeff0e6f5eee8046bdd910f6ea14bb5402e477e puremagic-1.15.tar.gz
"