# vim: set syn=sh: # Packager: Phill Watkins pkgname=eet pkgver=1.4.0.beta pkgrel=1pw #arch=noarch source=("http://download.enlightenment.org/releases/$pkgname-$pkgver.tar.gz") sourcetemplate=http://people.salixos.org/pwatk/packages/testing/enlightenment/$pkgname docs=("AUTHORS" "ChangeLog" "COPYING" "INSTALL" "NEWS" "README") url=http://www.enlightenment.org/ #doinst() { # #} slackdesc=\ ( #|-----handy-ruler------------------------------------------------------| "eet (An Enlightenment Foundation Library (EFL))" "Data encode/decode and storage library:" "" "Eet is a tiny library designed to write an arbitrary 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. It does not do zip as a zip itself has more complexity than is" "needed, and it was much simpler to implement this once here." ) build() { set -e cd $startdir/src/$pkgname-$pkgver ./configure \ --prefix=/usr \ --sysconfdir=/etc \ --localstatedir=/var \ --libdir=/usr/lib${LIBDIRSUFFIX} \ --mandir=/usr/man \ --infodir=/usr/info \ --docdir=/usr/doc/$pkgname-$pkgver \ --build=$arch-slackware-linux \ --disable-static make make install DESTDIR=$startdir/pkg set +e }