#Maintainer: Christopher Rey P. Baluyut pkgname=eet pkgver=1.2.3 pkgrel=1 zenver=64 arch=i486 source=("http://download.enlightenment.org/releases/$pkgname-$pkgver.tar.bz2") sourcetemplate=http://zenwalk.pinguix.com/user-accounts/shingoku/e17/$pkgname/source docs=('AUTHORS' 'COPYING' 'ChangeLog' 'INSTALL' 'NEWS' 'README') url="http://www.enlightenment.org/" slackdesc=\ ( #|-----handy-ruler------------------------------------------------------| "Eet (one of the Enlightenment DR17 foundation libraries)" "Eet is a tiny library designed to write an arbitary set of chunks" "of data to a file and optionally compress each chunk (very much" "like a zip file) and allow fast random-access reading of the file" "later on." ) build() { cd $startdir/src/$pkgname-$pkgver CFLAGS="-O2 -march=i486 -mtune=i686" \ CXXFLAGS="-O2 -march=i486 -mtune=i686" \ ./configure \ --prefix=/usr \ --libdir=/usr/lib \ --sysconfdir=/etc \ --localstatedir=/var \ --mandir=/usr/man \ --disable-static \ --build=$arch-slackware-linux || exit 1 make -j2 || exit 1 make install DESTDIR=$startdir/pkg || exit 1 }