2014-07-13 02:31:00 +00:00
|
|
|
# Maintainer: Ronald van Haren <ronald@archlinux.org>
|
|
|
|
# Contributor: Enlightenment Developers <enlightenment-devel@enlightenment.org>>
|
|
|
|
|
2014-07-13 02:15:42 +00:00
|
|
|
# ALARM: Nicolas Boichat <nicolas@boichat.ch>
|
|
|
|
# - Add upstream patch to fix overflow in e_desk.c
|
|
|
|
|
2014-07-13 02:31:00 +00:00
|
|
|
pkgname=enlightenment
|
|
|
|
pkgver=0.18.8
|
2014-07-13 02:15:42 +00:00
|
|
|
pkgrel=1.1
|
2014-07-13 02:31:00 +00:00
|
|
|
pkgdesc="Enlightenment window manager"
|
|
|
|
arch=('i686' 'x86_64')
|
|
|
|
url="http://www.enlightenment.org"
|
|
|
|
license=('BSD')
|
|
|
|
depends=('elementary' 'xcb-util-keysyms' 'hicolor-icon-theme' 'pixman' 'mesa'
|
|
|
|
'desktop-file-utils' 'udisks2' 'ttf-font' 'bluez-libs')
|
|
|
|
optdepends=('connman: network module'
|
|
|
|
'acpid: power events on laptop lid close')
|
|
|
|
provides=("enlightenment17=$pkgver" 'notification-daemon')
|
|
|
|
conflicts=("enlightenment17")
|
|
|
|
replaces=("enlightenment17")
|
|
|
|
backup=('etc/enlightenment/sysactions.conf'
|
|
|
|
'etc/xdg/menus/enlightenment.menu')
|
2014-07-13 02:15:42 +00:00
|
|
|
source=(http://download.enlightenment.org/rel/apps/${pkgname}/$pkgname-$pkgver.tar.gz
|
|
|
|
enlightenment-0.18.8-e-desk-overflow.patch)
|
2014-07-13 02:31:00 +00:00
|
|
|
install=enlightenment.install
|
2014-07-13 02:15:42 +00:00
|
|
|
sha1sums=('71d6212fc55ba65a47d656b0bc4891684445e3ff'
|
|
|
|
'd915cfde817dddd9e2ecf673aea53dfd06344813')
|
|
|
|
|
|
|
|
prepare() {
|
|
|
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
|
|
|
patch -p1 -i "${srcdir}/enlightenment-0.18.8-e-desk-overflow.patch"
|
|
|
|
}
|
2014-07-13 02:31:00 +00:00
|
|
|
|
|
|
|
build() {
|
|
|
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
|
|
|
|
|
|
|
export CFLAGS="$CFLAGS -fvisibility=hidden"
|
|
|
|
|
|
|
|
./configure --prefix=/usr --sysconfdir=/etc \
|
|
|
|
--enable-wayland-egl \
|
|
|
|
--enable-wayland-clients
|
|
|
|
make
|
|
|
|
}
|
|
|
|
|
|
|
|
package() {
|
|
|
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
|
|
|
make -j1 DESTDIR="$pkgdir" install
|
|
|
|
|
|
|
|
# install LICENSE
|
|
|
|
install -Dm644 COPYING "$pkgdir/usr/share/licenses/$pkgname/COPYING"
|
|
|
|
}
|