mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-01-09 02:32:25 +01:00
41 lines
1.1 KiB
Plaintext
41 lines
1.1 KiB
Plaintext
# Contributor: Fabian Affolter <fabian@affolter-engineering.ch>
|
|
# Maintainer: Fabian Affolter <fabian@affolter-engineering.ch>
|
|
pkgname=urlwatch
|
|
pkgver=1.17
|
|
pkgrel=0
|
|
pkgdesc="A tool for monitoring webpages for updates"
|
|
url="http://thpinfo.com/2008/urlwatch/"
|
|
arch="noarch"
|
|
license="BSD"
|
|
depends="python py-futures"
|
|
depends_dev=""
|
|
makedepends="python-dev"
|
|
install=""
|
|
subpackages="$pkgname-doc"
|
|
source="http://thp.io/2008/$pkgname/$pkgname-$pkgver.tar.gz"
|
|
_builddir="$srcdir"/$pkgname-$pkgver
|
|
|
|
prepare() {
|
|
local i
|
|
cd "$_builddir"
|
|
for i in $source; do
|
|
case $i in
|
|
*.patch) msg $i; patch -p1 -i "$srcdir"/$i || return 1;;
|
|
esac
|
|
done
|
|
}
|
|
|
|
build() {
|
|
cd "$_builddir"
|
|
python setup.py build || return 1
|
|
}
|
|
|
|
package() {
|
|
cd "$_builddir"
|
|
python setup.py install --prefix=/usr --root="$pkgdir" || return 1
|
|
}
|
|
|
|
md5sums="fb15ca7d3723e3a385ee149d9b19c262 urlwatch-1.17.tar.gz"
|
|
sha256sums="006f04c124cf3dace3d071921e5ed452f6fbd463495bc8aa7879b915407c88f6 urlwatch-1.17.tar.gz"
|
|
sha512sums="67026913083fcc99e99cfb33a31873ac48a2ee69db34b8c13fcccc3bdd051787954cfbf3d3ef73a331c03540e254f53ba6d2661967f89de204798aaf35033cd0 urlwatch-1.17.tar.gz"
|