blob: fe42c511172bce46abd0c9b03bbc406eedcabdfb (
plain)
1 # Description: Enlightenment DR17 window manager.
2 # URL: http://www.enlightenment.org/
3 # Maintainer: Victor Martinez, pitillo at ono dot com
4 # Depends on: efreet eeze xorg-libxcursor xorg-libxcomposite xorg-libxinerama xorg-libxrandr xorg-libxtst xorg-xcb-util-keysyms
5
6 name=e17
7 version=0.17.1
8 release=1
9 source=(http://download.enlightenment.org/releases/enlightenment-$version.tar.bz2)
10
11 build()
12 {
13 cd enlightenment-$version
14 ./configure --prefix=/usr \
15 --disable-nls \
16 --disable-mount-udisks
17 make
18 make install DESTDIR=$PKG
19 rm -r $PKG/usr/share/enlightenment/{AUTHORS,COPYING,doc/}
20 }
|