wok-stable annotate efreet/receipt @ rev 10391
apr: can't cross (use native)
author | Christophe Lincoln <pankso@slitaz.org> |
---|---|
date | Mon May 23 18:50:47 2011 +0200 (2011-05-23) |
parents | 7417fe0fa042 |
children | 998d80005942 |
rev | line source |
---|---|
pankso@140 | 1 # SliTaz package receipt. |
pankso@140 | 2 |
pankso@9788 | 3 PACKAGE="efreet" |
gokhlayeh@8505 | 4 VERSION="1.0.0" |
pankso@9788 | 5 CATEGORY="base-system" |
pankso@9788 | 6 SHORT_DESC="E17 implementation of several specifications from freedesktop.org." |
pankso@140 | 7 MAINTAINER="pankso@slitaz.org" |
pankso@9788 | 8 TARBALL="$PACKAGE-$VERSION.tar.bz2" |
pankso@140 | 9 WEB_SITE="http://www.enlightenment.org/" |
pankso@9788 | 10 WGET_URL="http://download.enlightenment.org/releases/$TARBALL" |
pankso@9788 | 11 |
pankso@9788 | 12 DEPENDS="eina eet ecore" |
pankso@9788 | 13 BUILD_DEPENDS="eina-dev eet-dev ecore-dev" |
pankso@9788 | 14 |
pankso@9788 | 15 # Rules to configure and make the package. |
pankso@9788 | 16 compile_rules() |
pankso@9788 | 17 { |
pankso@9788 | 18 cd $src |
slaxemulator@10317 | 19 ./configure $CONFIGURE_ARGS && |
slaxemulator@10317 | 20 make && make install |
pankso@9788 | 21 } |
pankso@140 | 22 |
pankso@140 | 23 # Rules to gen a SliTaz package suitable for Tazpkg. |
pankso@140 | 24 genpkg_rules() |
pankso@140 | 25 { |
pankso@140 | 26 mkdir -p $fs/usr/lib |
pankso@9788 | 27 cp -a $_pkg/usr/bin $fs/usr |
pankso@9788 | 28 cp -a $_pkg/usr/share $fs/usr |
pankso@9788 | 29 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib |
pankso@9788 | 30 cp -a $_pkg/usr/lib/efreet $fs/usr/lib |
pankso@140 | 31 } |
pankso@140 | 32 |