summaryrefslogtreecommitdiff
path: root/community/lxtask
diff options
context:
space:
mode:
authorParabola <dev@list.parabolagnulinux.org>2011-04-05 14:26:38 +0000
committerParabola <dev@list.parabolagnulinux.org>2011-04-05 14:26:38 +0000
commit415856bdd4f48ab4f2732996f0bae58595092bbe (patch)
treeede2018b591f6dfb477fe9341ba17b9bc000fab9 /community/lxtask
Tue Apr 5 14:26:38 UTC 2011
Diffstat (limited to 'community/lxtask')
-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
+}