# $Id: PKGBUILD 199731 2013-11-15 12:14:50Z ronald $ # Maintainer: Ronald van Haren # Contributor: Ronald van Haren pkgname=embryo pkgver=1.7.9 pkgrel=1 pkgdesc="implementation of a C like scripting language for e17" arch=('i686' 'x86_64') url="http://www.enlightenment.org" license=('BSD') depends=('glibc' 'eina') source=(http://download.enlightenment.org/releases/$pkgname-$pkgver.tar.gz) sha1sums=('1644da0be669213ce9ed29f1b58e9c6f3ab7c05c') 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-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 }