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/edje | |
parent | 0a05643b928d724c048e4306955642d91f24d33c (diff) |
Wed Nov 21 01:32:09 PST 2012
Diffstat (limited to 'extra/edje')
-rw-r--r-- | extra/edje/PKGBUILD | 54 | ||||
-rw-r--r-- | extra/edje/edje.install | 16 |
2 files changed, 70 insertions, 0 deletions
diff --git a/extra/edje/PKGBUILD b/extra/edje/PKGBUILD new file mode 100644 index 000000000..b2020c87d --- /dev/null +++ b/extra/edje/PKGBUILD @@ -0,0 +1,54 @@ +# $Id: PKGBUILD 171659 2012-11-20 21:55:08Z ronald $ +# Maintainer: Ronald van Haren <ronald@archlinux.org> +# Contributor: Gustavo Sverzut Barbieri <barbieri@gmail.com> + +pkgname=edje +pkgver=1.7.1 +pkgrel=1 +pkgdesc="A graphical design and layout library based on Evas" +arch=('i686' 'x86_64') +url="http://www.enlightenment.org" +license=('BSD') +depends=('eina' 'ecore' 'evas' 'eio' 'lua' 'shared-mime-info' 'embryo') +optdepends=('python2: inkscape2edc') +install=edje.install +options=('!libtool' '!emptydirs') +source=(http://download.enlightenment.org/releases/$pkgname-$pkgver.tar.gz) +sha1sums=('65e983041fa4405f14c23239d35dcce65ac1bbe4') + +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}" + + # python2 fix + sed -i 's_#!/usr/bin/env python_#!/usr/bin/env python2_' utils/inkscape2edc + + ./configure \ + --prefix=/usr \ + --disable-static \ + --enable-ecore-imf \ + --enable-eio \ + --disable-sndfile \ + --disable-remix \ + --disable-vorbisenc \ + --disable-alsa \ + --disable-flac \ + --disable-tests \ + --disable-coverage \ + --enable-amalgamation \ + --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 +} diff --git a/extra/edje/edje.install b/extra/edje/edje.install new file mode 100644 index 000000000..8407f4576 --- /dev/null +++ b/extra/edje/edje.install @@ -0,0 +1,16 @@ +post_install() { + update-mime-database usr/share/mime > /dev/null +} + +post_upgrade() { + post_install +} + +post_remove() { + post_install +} + + + + + |