wok annotate elementary/receipt @ rev 15747

Up: dillo (3.0.3) with better integration for JWM flavor
author Christophe Lincoln <pankso@slitaz.org>
date Fri Jan 03 10:29:30 2014 +0100 (2014-01-03)
parents 76b72f1ad63c
children 689fcc83daec
rev   line source
pankso@4767 1 # SliTaz package receipt.
pankso@4767 2
pankso@4767 3 PACKAGE="elementary"
domcox@15457 4 VERSION="1.7.9"
pankso@4767 5 CATEGORY="x-window"
domcox@14681 6 SHORT_DESC="EFL full regular widget set."
pankso@4767 7 MAINTAINER="pankso@slitaz.org"
pascal@14996 8 LICENSE="LGPL2.1"
pankso@4767 9 TARBALL="$PACKAGE-$VERSION.tar.bz2"
pankso@4767 10 WEB_SITE="http://www.enlightenment.org/"
pankso@13645 11 WGET_URL="http://download.enlightenment.org/releases/$TARBALL"
domcox@14422 12 TAGS="e enlightenment efl"
pankso@10621 13
domcox@14422 14 DEPENDS="efreet emotion ethumb libelementary"
domcox@14422 15 BUILD_DEPENDS="efreet-dev emotion-dev ethumb-dev"
pankso@4767 16
pankso@4767 17 # Rules to configure and make the package.
pankso@4767 18 compile_rules()
pankso@4767 19 {
domcox@14310 20 CFLAGS="$CFLAGS -fvisibility=hidden"
domcox@14310 21 LDFLAGS="$LDFLAGS -fvisibility=hidden"
domcox@14310 22 export LDFLAGS
domcox@14681 23
domcox@14681 24 ./configure --datadir=/usr/share2 $CONFIGURE_ARGS &&
domcox@14681 25 make $MAKEFLAGS && make install
pankso@4767 26 }
pankso@4767 27
pankso@4767 28 # Rules to gen a SliTaz package suitable for Tazpkg.
pankso@4767 29 genpkg_rules()
pankso@4767 30 {
domcox@14422 31 # lib
domcox@14422 32 mkdir -p $fs/usr/lib
domcox@14422 33 cp -a $install/usr/lib/edje $fs/usr/lib
domcox@14422 34 cp -a $install/usr/lib/elementary $fs/usr/lib
domcox@14422 35 rm -f $fs/usr/lib/*/modules/*/*/*.la
pankso@13645 36 cp -a $install/usr/lib/*.so* $fs/usr/lib
pankso@13645 37 # Package: libelementary
pankso@13645 38 rm -f $fs/usr/lib/libelementary.so.*
domcox@14422 39 # share
domcox@14422 40 # /usr/share2: to not automatically install /usr/share/applications
domcox@14422 41 mkdir -p $fs/usr/share
domcox@14422 42 cp -a $install/usr/share2/elementary $fs/usr/share
pankso@4767 43 }