diff options
author | root <root@rshg054.dnsready.net> | 2012-11-21 01:32:11 -0800 |
---|---|---|
committer | root <root@rshg054.dnsready.net> | 2012-11-21 01:32:11 -0800 |
commit | f48f6c82e23a3bacb8a0952c2d2cf9af1e6bf42d (patch) | |
tree | d578e4bdc10acc78968e3e5cdfce8dcd0289a60d /extra/ecore/PKGBUILD | |
parent | 0a05643b928d724c048e4306955642d91f24d33c (diff) |
Wed Nov 21 01:32:09 PST 2012
Diffstat (limited to 'extra/ecore/PKGBUILD')
-rw-r--r-- | extra/ecore/PKGBUILD | 94 |
1 files changed, 94 insertions, 0 deletions
diff --git a/extra/ecore/PKGBUILD b/extra/ecore/PKGBUILD new file mode 100644 index 000000000..01eac9aa1 --- /dev/null +++ b/extra/ecore/PKGBUILD @@ -0,0 +1,94 @@ +# $Id: PKGBUILD 171655 2012-11-20 21:49:02Z ronald $ +# Maintainer: Ronald van Haren <ronald@archlinux.org> +# Contributor: Gustavo Sverzut Barbieri <barbieri@gmail.com> + +pkgname=ecore +pkgver=1.7.1 +pkgrel=1 +pkgdesc="OS abstraction layer for e17" +arch=('i686' 'x86_64') +url="http://www.enlightenment.org" +license=('BSD') +depends=('eina' 'evas' 'glib2' 'libxp' 'curl' 'libxss' 'libxtst' + 'libxcomposite' 'libxrandr' 'libxinerama' 'libxcursor') +makedepends=('subversion') +options=('!libtool' '!emptydirs') +source=(http://download.enlightenment.org/releases/$pkgname-$pkgver.tar.gz) +sha1sums=('c48f2815cddd735b33f169a703d4baa4dee90b43') + +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 \ + --libexecdir=/usr/lib/ecore \ + --with-internal-maximum-log-level=3 \ + --disable-static \ + --disable-ecore-timer-dump \ + --enable-glib \ + --enable-ecore-x-composite \ + --enable-ecore-x-damage \ + --enable-ecore-x-dpms \ + --enable-ecore-x-randr \ + --enable-ecore-x-render \ + --enable-ecore-x-screensaver \ + --enable-ecore-x-shape \ + --enable-ecore-x-gesture \ + --enable-ecore-x-sync \ + --enable-ecore-x-xfixes \ + --enable-ecore-x-xinerama \ + --enable-ecore-x-xprint \ + --enable-ecore-x-xtest \ + --enable-ecore-x-cursor \ + --enable-ecore-x-input \ + --enable-ecore-x-dri \ + --enable-epoll \ + --enable-posix-threads \ + --disable-debug-threads \ + --enable-thread-safety \ + --enable-atfile-source \ + --enable-ecore-con \ + --enable-curl \ + --disable-gnutls \ + --enable-openssl \ + --enable-ecore-ipc \ + --enable-ecore-file \ + --enable-poll \ + --enable-inotify \ + --enable-ecore-imf \ + --enable-ecore-imf-evas \ + --enable-ecore-input \ + --enable-ecore-input-evas \ + --enable-ecore-imf-xim \ + --disable-ecore-imf-scim \ + --disable-ecore-imf-ibus \ + --enable-ecore-x \ + --disable-ecore-sdl \ + --enable-ecore-fb \ + --disable-ecore-directfb \ + --enable-ecore-evas \ + --enable-ecore-evas-software-buffer \ + --enable-ecore-evas-software-x11 \ + --enable-ecore-evas-opengl-x11 \ + --enable-ecore-evas-fb \ + --disable-ecore-evas-ews \ + --disable-ecore-wayland \ + --disable-tests \ + --disable-coverage \ + --disable-install-examples \ + --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 +} |