wok-stable annotate efreet/receipt @ rev 8505
Update e17 stuff to last version
author | Antoine Bodin <gokhlayeh@slitaz.org> |
---|---|
date | Sat Feb 12 02:21:51 2011 +0100 (2011-02-12) |
parents | b68b4f934ba7 |
children | 4d81023c7989 |
rev | line source |
---|---|
pankso@140 | 1 # SliTaz package receipt. |
pankso@140 | 2 |
pankso@140 | 3 PACKAGE="efreet" |
gokhlayeh@8505 | 4 VERSION="1.0.0" |
gokhlayeh@8505 | 5 CATEGORY="base-system" |
pankso@2917 | 6 SHORT_DESC="E17 implementation of several specifications from freedesktop.org." |
pankso@140 | 7 MAINTAINER="pankso@slitaz.org" |
gokhlayeh@8505 | 8 DEPENDS="eina ecore" |
gokhlayeh@8505 | 9 BUILD_DEPENDS="" |
pankso@2024 | 10 TARBALL="$PACKAGE-$VERSION.tar.bz2" |
pankso@140 | 11 WEB_SITE="http://www.enlightenment.org/" |
gokhlayeh@8505 | 12 WGET_URL="http://download.enlightenment.org/releases/$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 |
gokhlayeh@8505 | 18 ./configure && make && make install |
pankso@140 | 19 } |
pankso@140 | 20 |
pankso@140 | 21 # Rules to gen a SliTaz package suitable for Tazpkg. |
pankso@140 | 22 genpkg_rules() |
pankso@140 | 23 { |
pankso@140 | 24 mkdir -p $fs/usr/lib |
pankso@140 | 25 cp -a $_pkg/usr/bin $fs/usr |
pankso@140 | 26 cp -a $_pkg/usr/share $fs/usr |
pankso@140 | 27 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib |
pankso@140 | 28 } |
pankso@140 | 29 |