mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-03-06 14:12:23 +01:00
29 lines
797 B
Plaintext
29 lines
797 B
Plaintext
# 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"
|