summaryrefslogtreecommitdiffstats
path: root/testing/urlwatch/APKBUILD
blob: e4bd2d7bdb5b9bf5e69cb1242d4cc38acb114ec9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
# Contributor: Fabian Affolter <fabian@affolter-engineering.ch>
# Maintainer: Fabian Affolter <fabian@affolter-engineering.ch>
pkgname=urlwatch
pkgver=1.15
pkgrel=1
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="a0a739d4ea18f15c121e5f12bb75cbc9  urlwatch-1.15.tar.gz"