# $Id: PKGBUILD 185670 2013-05-16 20:56:37Z ronald $ # Maintainer: Ronald van Haren # Contributor: Gustavo Sverzut Barbieri pkgname=eio pkgver=1.7.7 pkgrel=1 pkgdesc="Async IO library using Ecore" arch=('i686' 'x86_64') url="http://www.enlightenment.org" license=('BSD') depends=('ecore') options=('!libtool' '!emptydirs') source=(http://download.enlightenment.org/releases/$pkgname-$pkgver.tar.gz) sha1sums=('1c1bf133496de65c35a19319988796c9913d1d42') 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 \ --enable-posix-threads \ --disable-debug-threads \ --enable-inotify \ --disable-install-examples \ --disable-doc make } package(){ cd $pkgname-$pkgver make DESTDIR=$pkgdir install # install license files install -Dm644 $srcdir/$pkgname-$pkgver/COPYING \ $pkgdir/usr/share/licenses/$pkgname/COPYING }