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/eeze | |
parent | 0a05643b928d724c048e4306955642d91f24d33c (diff) |
Wed Nov 21 01:32:09 PST 2012
Diffstat (limited to 'extra/eeze')
-rw-r--r-- | extra/eeze/PKGBUILD | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/extra/eeze/PKGBUILD b/extra/eeze/PKGBUILD new file mode 100644 index 000000000..c797c733d --- /dev/null +++ b/extra/eeze/PKGBUILD @@ -0,0 +1,39 @@ +# $Id: PKGBUILD 171657 2012-11-20 21:53:49Z ronald $ +# Maintainer: Ronald van Haren <ronald@archlinux.org> +# Contributor: Gustavo Sverzut Barbieri <barbieri@gmail.com> + +pkgname=eeze +pkgver=1.7.1 +pkgrel=1 +pkgdesc="Manipulate devices using udev and sysfs" +arch=('i686' 'x86_64') +url="http://www.enlightenment.org" +license=('BSD') +depends=('ecore' 'eina' 'udev') +options=('!libtool' '!emptydirs') +source=(http://download.enlightenment.org/releases/$pkgname-$pkgver.tar.gz) +sha1sums=('74c7f85a112bb80e16419a30244c144ebc8b20d7') + +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-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 +} |