1
0
Fork 0
mirror of https://gitlab.alpinelinux.org/alpine/aports.git synced 2025-07-23 03:05:48 +03:00
aports/community/py3-listparser/APKBUILD
psykose deb62258ec */*: set --skip-build for python installs
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
2023-01-10 04:19:31 +01:00

29 lines
791 B
Text

# Contributor: Rasmus Thomsen <oss@cogitri.dev>
# Maintainer: Rasmus Thomsen <oss@cogitri.dev>
pkgname=py3-listparser
pkgver=0.19
pkgrel=1
pkgdesc="Parse OPML, FOAF, and iGoogle subscription lists"
url="https://github.com/kurtmckee/listparser"
arch="noarch"
license="GPL-3.0-or-later"
depends="python3 py3-requests"
makedepends="py3-setuptools"
source="https://files.pythonhosted.org/packages/source/l/listparser/listparser-$pkgver.tar.gz"
builddir="$srcdir/listparser-$pkgver"
build() {
python3 setup.py build
}
check() {
python3 setup.py test
}
package() {
python3 setup.py install --skip-build --root="$pkgdir"
}
sha512sums="
7c56ca1711c94fa4936cb6d0e1214270fe2e5756c57981ed16f5cf7b3ce6ffce28fd21bb2085ccd002eb47df6740a6b9c427c8acf0f7d56883d487fe5f8847b8 listparser-0.19.tar.gz
"