diff options
author | Keith Maxwell <keith.maxwell@gmail.com> | 2020-04-07 12:08:19 +0100 |
---|---|---|
committer | Leo <thinkabit.ukim@gmail.com> | 2020-04-07 11:23:04 +0000 |
commit | ec989089a9119b94bffad47226e3ca61366fdf9f (patch) | |
tree | eec1b53abdccf84a727aa84de484ab4c0ecc100a /community/urlscan | |
parent | c710896c0b0e75cf7a1483a883031a102e6b559a (diff) | |
download | aports-ec989089a9119b94bffad47226e3ca61366fdf9f.tar.bz2 aports-ec989089a9119b94bffad47226e3ca61366fdf9f.tar.xz |
community/urlscan: move from testing
Diffstat (limited to 'community/urlscan')
-rw-r--r-- | community/urlscan/APKBUILD | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/community/urlscan/APKBUILD b/community/urlscan/APKBUILD new file mode 100644 index 0000000000..4f9d739fad --- /dev/null +++ b/community/urlscan/APKBUILD @@ -0,0 +1,25 @@ +# Contributor: Keith Maxwell <keith.maxwell@gmail.com> +# Maintainer: Keith Maxwell <keith.maxwell@gmail.com> +pkgname=urlscan +_pkgname=urlscan +pkgver=0.9.4 +pkgrel=1 +pkgdesc="Mutt and terminal url selector (similar to urlview)" +options="!check" # No testsuite +url="https://github.com/firecat53/urlscan" +arch="noarch" +license="GPL-2.0-or-later" +depends="python3 py3-urwid" +makedepends="py3-setuptools" +subpackages="$pkgname-doc" +source="https://files.pythonhosted.org/packages/source/u/$_pkgname/$_pkgname-$pkgver.tar.gz" + +build() { + python3 setup.py build +} + +package() { + python3 setup.py install --prefix=/usr --root="$pkgdir" +} + +sha512sums="b13ec3f523f6d271cc22933131371d92e2c665daede9ce41fd2915092b93b2f03b3b8f83a1e4ef54cb5db8f385c911cf02de475851b123b81cae9c2280d6689b urlscan-0.9.4.tar.gz" |