summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: f143197097a8179f7d0e3407b112d4c5dd7cde20 (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
# $Id: PKGBUILD 536 2014-08-31 08:14:05Z pierre $
# Maintainer: Pierre Schmitz <pierre@archlinux.de>

pkgname=w3watch
pkgver=1.0.3
pkgrel=2
pkgdesc='Watch the web and get notified on updates'
arch=('any')
url='https://github.com/pierres/w3watch'
license=('GPL')
depends=('bash' 'lynx' 'awk' 'diffutils' 'coreutils' 'grep')
makedepends=('git')
source=("${pkgname}::git+https://github.com/pierres/w3watch.git#tag=${pkgver}")
md5sums=('SKIP')

prepare() {
	cd ${srcdir}/${pkgname}
	git verify-tag ${pkgver}
}

package() {
	cd ${srcdir}/${pkgname}
	make install DESTDIR=${pkgdir}
}