wok-4.x annotate efreet/receipt @ rev 10515
efreet: up and fix bdeps
author | Christophe Lincoln <pankso@slitaz.org> |
---|---|
date | Wed May 25 15:57:19 2011 +0200 (2011-05-25) |
parents | 641a94f7ad29 |
children | fe57bf03de94 |
rev | line source |
---|---|
pankso@140 | 1 # SliTaz package receipt. |
pankso@140 | 2 |
pankso@9788 | 3 PACKAGE="efreet" |
pankso@10515 | 4 VERSION="1.0.1" |
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@10515 | 12 DEPENDS="eina eet ecore libgnutls libcurl libgnutls fribidi librsvg" |
pankso@10515 | 13 BUILD_DEPENDS="eina-dev eet-dev ecore-dev fribidi-dev librsvg-dev \ |
pankso@10515 | 14 gnutls-dev libcroco-dev curl-dev" |
pankso@9788 | 15 |
pankso@9788 | 16 # Rules to configure and make the package. |
pankso@9788 | 17 compile_rules() |
pankso@9788 | 18 { |
pankso@9788 | 19 cd $src |
slaxemulator@10317 | 20 ./configure $CONFIGURE_ARGS && |
slaxemulator@10317 | 21 make && make install |
pankso@9788 | 22 } |
pankso@140 | 23 |
pankso@140 | 24 # Rules to gen a SliTaz package suitable for Tazpkg. |
pankso@140 | 25 genpkg_rules() |
pankso@140 | 26 { |
pankso@140 | 27 mkdir -p $fs/usr/lib |
pankso@9788 | 28 cp -a $_pkg/usr/bin $fs/usr |
pankso@9788 | 29 cp -a $_pkg/usr/share $fs/usr |
pankso@9788 | 30 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib |
pankso@9788 | 31 cp -a $_pkg/usr/lib/efreet $fs/usr/lib |
pankso@140 | 32 } |
pankso@140 | 33 |