summaryrefslogtreecommitdiff
path: root/extra/enlightenment17/PKGBUILD
diff options
context:
space:
mode:
Diffstat (limited to 'extra/enlightenment17/PKGBUILD')
-rw-r--r--extra/enlightenment17/PKGBUILD87
1 files changed, 0 insertions, 87 deletions
diff --git a/extra/enlightenment17/PKGBUILD b/extra/enlightenment17/PKGBUILD
deleted file mode 100644
index 34df14257..000000000
--- a/extra/enlightenment17/PKGBUILD
+++ /dev/null
@@ -1,87 +0,0 @@
-# $Id: PKGBUILD 199739 2013-11-15 12:19:48Z ronald $
-# Maintainer: Ronald van Haren <ronald@archlinux.org>
-# Contributor: Gustavo Sverzut Barbieri <barbieri@gmail.com>
-
-pkgname=enlightenment17
-_pkgname=enlightenment
-pkgver=0.17.5
-pkgrel=1
-pkgdesc="Enlightenment window manager DR17 (aka e17)"
-arch=('i686' 'x86_64' 'mips64el')
-url="http://www.enlightenment.org"
-license=('BSD')
-depends=('alsa-lib' 'pam' 'shared-mime-info' 'hicolor-icon-theme'
- 'desktop-file-utils' 'e_dbus' 'edje' 'eeze' 'efreet'
- 'eio' 'elementary' 'xcb-util-keysyms' 'udisks' 'systemd' 'ttf-font')
-optdepends=('connman: network module')
-provides=('notification-daemon' 'e')
-backup=('etc/enlightenment/sysactions.conf')
-options=('!emptydirs')
-install=enlightenment17.install
-source=(http://download.enlightenment.org/releases/$_pkgname-$pkgver.tar.gz
- 'e-applications.menu' 'quickstart.patch' 'sysactions_systemd.patch')
-sha1sums=('8fd40ad2df2eb96a3d6583bcd19d150d594a6e86'
- 'e08cc63cb8a188a06705b42d03e032b9fcfa7ee5'
- '3f53931ae86de8fe99e386aeb097521aac0decd8'
- '86f1c5e36dc274c3101362532378be034e89c593')
-
-prepare() {
- cd "$srcdir/$_pkgname-$pkgver"
- patch -p0 < $srcdir/quickstart.patch
-
- # default to systemd for sysactions
- patch -Np0 < $srcdir/sysactions_systemd.patch
-
-}
-build() {
- cd "$srcdir/$_pkgname-$pkgver"
-
- export CFLAGS="-fvisibility=hidden -ffunction-sections -fdata-sections ${CFLAGS}"
- export CXXFLAGS="-fvisibility=hidden -ffunction-sections -fdata-sections ${CXXFLAGS}"
- export LDFLAGS="-fvisibility=hidden -ffunction-sections -fdata-sections -Wl,--gc-sections -Wl,--as-needed ${LDFLAGS}"
-
- ./configure \
- --prefix=/usr \
- --sysconfdir=/etc \
- --libexecdir=/usr/lib/enlightenment \
- --enable-strict \
- --disable-static \
- --enable-pam \
- --disable-device-hal \
- --enable-device-udev \
- --disable-mount-hal \
- --enable-mount-udisks \
- --enable-mount-eeze \
- --enable-elementary \
- --enable-emotion \
- --enable-enotify \
- --disable-ephysics \
- --disable-wayland-clients \
- --disable-conf-wallpaper2 \
- --disable-illume2 \
- --disable-physics \
- --disable-doc
- make
-}
-
-package() {
- cd $srcdir/$_pkgname-$pkgver
-
- make DESTDIR=$pkgdir install
-
-# install license files
- if [ -e $srcdir/$_pkgname-$pkgver/COPYING ]; then
- install -Dm644 $srcdir/$_pkgname-$pkgver/COPYING \
- $pkgdir/usr/share/licenses/$pkgname/COPYING
- fi
-
- if [ -e $srcdir/$_pkgname-$pkgver/COPYING-PLAIN ]; then
- install -Dm644 $srcdir/$_pkgname-$pkgver/COPYING-PLAIN \
- $pkgdir/usr/share/licenses/$pkgname/COPYING-PLAIN
- fi
-
- # install a default applications.menu file (mostly copy from gnome-menus)
- install -Dm644 $srcdir/e-applications.menu \
- $pkgdir/etc/xdg/menus/e-applications.menu
-}
-