1 # Maintainer: Alexander Rødseth <rodseth@gmail.com>
5 pkgdesc="Console application for warning when you are running out of disk space"
7 url="https://github.com/xyproto/diskmoose"
11 provides=('diskmoose')
12 conflicts=('diskmoose')
13 _gitroot="git://github.com/xyproto/diskmoose.git"
19 msg "Connecting to the $_gitname git repository..."
20 if [ -d "$srcdir/$_gitname" ] ; then
21 cd $_gitname && git pull origin
22 msg "The local files are updated."
27 msg "GIT checkout done or server timeout"
29 rm -rf $_gitname-build
30 git clone $_gitname $_gitname-build
39 install -Dm755 diskmoose "$pkgdir/usr/bin/diskmoose"
40 install -Dm 644 COPYING \
41 "$pkgdir/usr/share/licenses/$pkgname/COPYING"
44 # vim:set ts=2 sw=2 et: