summaryrefslogtreecommitdiff
path: root/community/lxtask/PKGBUILD
diff options
context:
space:
mode:
Diffstat (limited to 'community/lxtask/PKGBUILD')
-rw-r--r--community/lxtask/PKGBUILD22
1 files changed, 22 insertions, 0 deletions
diff --git a/community/lxtask/PKGBUILD b/community/lxtask/PKGBUILD
new file mode 100644
index 000000000..b933fc7c1
--- /dev/null
+++ b/community/lxtask/PKGBUILD
@@ -0,0 +1,22 @@
+# Maintainer: Angel 'angvp' Velasquez <angvp[at]archlinux.com.ve>
+# Maintainer: Geoffroy Carrier <geoffroy.carrier@koon.fr>
+pkgname=lxtask
+pkgver=0.1.3
+pkgrel=1
+pkgdesc="Task manager of the LXDE Desktop"
+arch=('i686' 'x86_64')
+license=('GPL2')
+url="http://lxde.org/"
+groups=('lxde')
+depends=('gtk2')
+makedepends=('pkgconfig' 'intltool')
+source=(http://downloads.sourceforge.net/sourceforge/lxde/${pkgname}-${pkgver}.tar.gz)
+md5sums=('eccfb69ee1a209248b22a5f0a34a4734')
+
+build() {
+ cd "$srcdir/$pkgname-$pkgver"
+ autoreconf || return 1
+ ./configure --sysconfdir=/etc --prefix=/usr || return 1
+ make || return 1
+ make DESTDIR="$pkgdir" install || return 1
+}