diff options
author | Keith Maxwell <keith.maxwell@gmail.com> | 2019-05-09 13:32:50 +0100 |
---|---|---|
committer | Kevin Daudt <kdaudt@alpinelinux.org> | 2019-05-09 15:38:50 +0000 |
commit | c42dae9979b2b598f5eb11369eddc646c5875bf0 (patch) | |
tree | 040386f09237b220fe008bd4e5b26f49b9606ae3 | |
parent | 2944053d792a084c2d0d62700f6238b7ea59f325 (diff) | |
download | aports-c42dae9979b2b598f5eb11369eddc646c5875bf0.tar.bz2 aports-c42dae9979b2b598f5eb11369eddc646c5875bf0.tar.xz |
testing/urlscan: new aport
Closes GH-7746
-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" |