# vim: set syn=sh: # Packager: Phill Watkins pkgname=edje pkgver=1.0.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------------------------------------------------------| "edje (An Enlightenment Foundation Library (EFL))" "Abstract GUI layout and animation object library:" "" "Edje is a graphical layout and animation library for animated" "resizable, compressed and scalable themes. It is meant to abstract UI" "from the programmer to make it possible to plug in any replacement" "look at feel that can be generated any time after an application or" "library has already been developed, thus allowing full flexibility of" "look and feel without having to involve the software developers." ) 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 }