summaryrefslogtreecommitdiff
path: root/community/whowatch/PKGBUILD
diff options
context:
space:
mode:
Diffstat (limited to 'community/whowatch/PKGBUILD')
-rw-r--r--community/whowatch/PKGBUILD23
1 files changed, 23 insertions, 0 deletions
diff --git a/community/whowatch/PKGBUILD b/community/whowatch/PKGBUILD
new file mode 100644
index 000000000..8afaf44dd
--- /dev/null
+++ b/community/whowatch/PKGBUILD
@@ -0,0 +1,23 @@
+# Maintainer: Daniel Micay <danielmicay@gmail.com>
+# Contributor: Nezmer <me at nezmer.info>
+pkgname=whowatch
+pkgver=1.8.5
+pkgrel=1
+pkgdesc='Displays information about the users currently logged on to the machine in real time'
+arch=(i686 x86_64)
+url="http://wizard.ae.krakow.pl/~mike/#whowatch"
+license=('GPL2')
+depends=(ncurses)
+source=(http://wizard.ae.krakow.pl/~mike/download/$pkgname-$pkgver.tar.gz)
+md5sums=('8304e8907c7d9e585beda9bec9a9c5fb')
+
+build() {
+ cd "$srcdir/$pkgname-$pkgver"
+ ./configure --prefix=/usr
+ make
+}
+
+package() {
+ cd "$srcdir/$pkgname-$pkgver"
+ make bindir="$pkgdir/usr/bin" mandir="$pkgdir/usr/share/man" install
+}