# $Id: PKGBUILD 184839 2013-05-09 09:27:01Z ronald $ # Maintainer: Ronald van Haren # Contributor: Gustavo Sverzut Barbieri pkgname=efreet pkgver=1.7.6 pkgrel=1 pkgdesc="FreeDesktop.Org specifications for e17" arch=('i686' 'x86_64') url="http://www.enlightenment.org" license=('BSD') depends=('eina' 'ecore' 'e_dbus') options=('!libtool' '!emptydirs') source=(http://download.enlightenment.org/releases/$pkgname-$pkgver.tar.gz) sha1sums=('1c561497372c5b4c61074789c738b6d62bc9e5d0') 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 \ --disable-static \ --disable-tests \ --disable-coverage \ --disable-doc make } package(){ cd $srcdir/$pkgname-$pkgver make DESTDIR=$pkgdir install # install license files install -Dm644 $srcdir/$pkgname-$pkgver/COPYING \ $pkgdir/usr/share/licenses/$pkgname/COPYING }