diff options
Diffstat (limited to 'testing/urlscan/APKBUILD')
-rw-r--r-- | testing/urlscan/APKBUILD | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/testing/urlscan/APKBUILD b/testing/urlscan/APKBUILD new file mode 100644 index 0000000000..76b31697ff --- /dev/null +++ b/testing/urlscan/APKBUILD @@ -0,0 +1,28 @@ +# Contributor: Keith Maxwell <keith.maxwell@gmail.com> +# Maintainer: Keith Maxwell <keith.maxwell@gmail.com> +pkgname=urlscan +_pyname="$pkgname" +pkgver=0.9.2 +pkgrel=0 +pkgdesc="Mutt and terminal url selector (similar to urlview)" +url="https://github.com/firecat53/urlscan" +arch="noarch" +license="GPL-2.0-or-later" +depends="python3 py3-urwid" +makedepends="py3-setuptools" +source="https://files.pythonhosted.org/packages/source/u/$_pyname/$_pyname-$pkgver.tar.gz" +subpackages="$pkgname-doc" + +build() { + python3 setup.py build +} + +check() { + python3 setup.py test +} + +package() { + python3 setup.py install --prefix=/usr --root="$pkgdir" +} + +sha512sums="3eeedebce509b9b7423f05cbbdabe3bf9747e206cf5da258df6a21f72cdc53f9048385503f2d8ab6d3e32a4bbdcbabfcc6804c7099bd001ff2bef65646d9f175 urlscan-0.9.2.tar.gz" |