wok annotate elementary/receipt @ rev 18140
syslinux/taziso: add floppyset
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Mon Jun 15 16:28:54 2015 +0200 (2015-06-15) |
parents | b63c0a0795ba |
children | 86790a278e70 |
rev | line source |
---|---|
pankso@4767 | 1 # SliTaz package receipt. |
pankso@4767 | 2 |
pankso@4767 | 3 PACKAGE="elementary" |
pankso@16141 | 4 VERSION="1.7.10" |
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@16141 | 13 HOST_ARCH="i486 arm" |
pankso@10621 | 14 |
pankso@16141 | 15 GENERIC_MENUS="no" |
pankso@16141 | 16 RELATED="elementary libelementary" |
domcox@14422 | 17 DEPENDS="efreet emotion ethumb libelementary" |
domcox@14422 | 18 BUILD_DEPENDS="efreet-dev emotion-dev ethumb-dev" |
pankso@4767 | 19 |
pankso@4767 | 20 # Rules to configure and make the package. |
pankso@4767 | 21 compile_rules() |
pankso@4767 | 22 { |
pankso@16141 | 23 export CFLAGS="$CFLAGS -fvisibility=hidden" |
pankso@16141 | 24 export LDFLAGS="$LDFLAGS -fvisibility=hidden" |
pankso@16141 | 25 ./configure --datadir=/usr/share $CONFIGURE_ARGS && |
domcox@14681 | 26 make $MAKEFLAGS && make install |
pankso@4767 | 27 } |
pankso@4767 | 28 |
pankso@4767 | 29 # Rules to gen a SliTaz package suitable for Tazpkg. |
pankso@4767 | 30 genpkg_rules() |
pankso@4767 | 31 { |
domcox@14422 | 32 # lib |
pankso@16141 | 33 mkdir -p $fs/usr/lib $fs/usr/share |
domcox@14422 | 34 cp -a $install/usr/lib/edje $fs/usr/lib |
domcox@14422 | 35 cp -a $install/usr/lib/elementary $fs/usr/lib |
domcox@14422 | 36 rm -f $fs/usr/lib/*/modules/*/*/*.la |
pankso@13645 | 37 cp -a $install/usr/lib/*.so* $fs/usr/lib |
pankso@13645 | 38 # Package: libelementary |
pankso@13645 | 39 rm -f $fs/usr/lib/libelementary.so.* |
pankso@16141 | 40 # share |
pankso@16141 | 41 cp -a $install/usr/share/elementary $fs/usr/share |
pankso@4767 | 42 } |