wok annotate efreet/receipt @ rev 2886

pekwm: add custom keys, start and improve menu
author Rohit Joshi <jozee@slitaz.org>
date Mon May 04 12:27:31 2009 +0000 (2009-05-04)
parents 91227310f158
children fc471c5f5a90
rev   line source
pankso@140 1 # SliTaz package receipt.
pankso@140 2
pankso@140 3 PACKAGE="efreet"
pankso@2024 4 VERSION="0.5.0.050"
pankso@211 5 CATEGORY="x-window"
pankso@140 6 SHORT_DESC="E17 libs."
pankso@140 7 MAINTAINER="pankso@slitaz.org"
pascal@2487 8 DEPENDS="eet evas ecore embryo edje libcurl openssl"
pascal@1480 9 BUILD_DEPENDS="eet evas ecore embryo edje"
pankso@2024 10 TARBALL="$PACKAGE-$VERSION.tar.bz2"
pankso@140 11 WEB_SITE="http://www.enlightenment.org/"
pankso@2024 12 WGET_URL="http://download.enlightenment.org/snapshots/2008-09-25/$TARBALL"
pankso@140 13
pankso@140 14 # Rules to configure and make the package.
pankso@140 15 compile_rules()
pankso@140 16 {
pankso@140 17 cd $src
pankso@2024 18 ./configure \
pankso@2024 19 --prefix=/usr \
pankso@2024 20 --infodir=/usr/share/info \
pankso@2024 21 --mandir=/usr/share/man \
pankso@2024 22 $CONFIGURE_ARGS &&
pascal@1480 23 make &&
pankso@140 24 make DESTDIR=$PWD/_pkg install
pankso@140 25 }
pankso@140 26
pankso@140 27 # Rules to gen a SliTaz package suitable for Tazpkg.
pankso@140 28 genpkg_rules()
pankso@140 29 {
pankso@140 30 mkdir -p $fs/usr/lib
pankso@140 31 cp -a $_pkg/usr/bin $fs/usr
pankso@140 32 cp -a $_pkg/usr/share $fs/usr
pankso@140 33 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
pankso@140 34 }
pankso@140 35