diff options
author | Florian Pritz <bluewind@xinu.at> | 2012-12-16 11:51:24 +0100 |
---|---|---|
committer | Florian Pritz <bluewind@xinu.at> | 2012-12-16 11:51:24 +0100 |
commit | c6000c9d9949b3326fb82f02431899ab6774b960 (patch) | |
tree | 2453cd564b0f382f3d8ccd893df8ebe2e9aeda71 /w3watch-git/PKGBUILD | |
parent | 453f0f12918af35bd8e1e5f049841360f37d62e4 (diff) | |
download | aur-packages-c6000c9d9949b3326fb82f02431899ab6774b960.tar.gz aur-packages-c6000c9d9949b3326fb82f02431899ab6774b960.tar.xz |
big cleanup
Diffstat (limited to 'w3watch-git/PKGBUILD')
-rw-r--r-- | w3watch-git/PKGBUILD | 33 |
1 files changed, 0 insertions, 33 deletions
diff --git a/w3watch-git/PKGBUILD b/w3watch-git/PKGBUILD deleted file mode 100644 index dbae2bb..0000000 --- a/w3watch-git/PKGBUILD +++ /dev/null @@ -1,33 +0,0 @@ -# Maintainer: Pierre Schmitz <pierre@archlinux.de> - -pkgname=w3watch-git -pkgver=20100122 -pkgrel=1 -pkgdesc='Watch the web and get notified on updates' -arch=('any') -url='http://git.archlinux.de/w3watch/' -depends=('bash' 'lynx' 'awk' 'diffutils' 'coreutils' 'grep') -license=('GPL') - -_gitroot='http://git.archlinux.de/~pierre/w3watch.git' -_gitname='w3watch' - -build() { - cd ${srcdir} - msg 'Connecting to GIT server....' - - if [ -d $_gitname ] ; then - pushd $_gitname && git pull origin - msg 'The local files are updated.' - popd - else - git clone $_gitroot - fi - - msg 'GIT checkout done or server timeout' - msg 'Starting make...' - install -D -m755 "${_gitname}/w3watch" \ - "${pkgdir}/usr/bin/w3watch" - install -D -m644 "${_gitname}/config.sample" \ - "${pkgdir}/usr/share/doc/w3watch/config.sample" -} |