summaryrefslogtreecommitdiff
path: root/community/ude/PKGBUILD
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/ude/PKGBUILD
Tue Apr 5 14:26:38 UTC 2011
Diffstat (limited to 'community/ude/PKGBUILD')
-rw-r--r--community/ude/PKGBUILD26
1 files changed, 26 insertions, 0 deletions
diff --git a/community/ude/PKGBUILD b/community/ude/PKGBUILD
new file mode 100644
index 000000000..bf99313e3
--- /dev/null
+++ b/community/ude/PKGBUILD
@@ -0,0 +1,26 @@
+# $Id: PKGBUILD 12299 2010-03-01 11:14:18Z spupykin $
+# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com>
+# Contributor: eric <eric@archlinux.org>
+# Contributor: dorphell <dorphell@gmx.net>
+
+pkgname=ude
+pkgver=0.2.10
+pkgrel=1
+pkgdesc="UDE, the Unix Desktop Environment, is a GUI desktop environment"
+arch=('i686' 'x86_64')
+license=('GPL')
+depends=('libjpeg' 'libxmu' 'libxpm')
+url="http://udeproject.sourceforge.net/index.shtml"
+source=(http://downloads.sourceforge.net/udeproject/uwm-$pkgver.tar.gz \
+ $pkgname.desktop)
+md5sums=('efb3392591ad976d20bd7ac6f174a5a3'
+ '84f94253ea284258c4465cd76edf599f')
+
+build() {
+ cd $srcdir/uwm-$pkgver
+ mkdir -p $pkgdir/etc/X11/sessions
+ ./configure --prefix=/usr
+ make || return 1
+ make prefix=$pkgdir/usr install
+ cp $srcdir/$pkgname.desktop $pkgdir/etc/X11/sessions
+}