wok view elementary/receipt @ rev 20497

updated diffutils (3.3 -> 3.6)
author Hans-G?nter Theisgen
date Mon Oct 29 16:27:52 2018 +0100 (2018-10-29)
parents 689fcc83daec
children d8c511e24c20
line source
1 # SliTaz package receipt.
3 PACKAGE="elementary"
4 VERSION="1.7.10"
5 CATEGORY="x-window"
6 SHORT_DESC="EFL full regular widget set."
7 MAINTAINER="pankso@slitaz.org"
8 LICENSE="LGPL2.1"
9 TARBALL="$PACKAGE-$VERSION.tar.bz2"
10 WEB_SITE="https://www.enlightenment.org/"
11 WGET_URL="http://download.enlightenment.org/releases/$TARBALL"
12 TAGS="e enlightenment efl"
13 HOST_ARCH="i486 arm"
15 GENERIC_MENUS="no"
16 RELATED="elementary libelementary"
17 DEPENDS="efreet emotion ethumb libelementary"
18 BUILD_DEPENDS="efreet-dev emotion-dev ethumb-dev"
20 # Rules to configure and make the package.
21 compile_rules()
22 {
23 export CFLAGS="$CFLAGS -fvisibility=hidden"
24 export LDFLAGS="$LDFLAGS -fvisibility=hidden"
25 ./configure --datadir=/usr/share $CONFIGURE_ARGS &&
26 make $MAKEFLAGS && make install
27 }
29 # Rules to gen a SliTaz package suitable for Tazpkg.
30 genpkg_rules()
31 {
32 # lib
33 mkdir -p $fs/usr/lib $fs/usr/share
34 cp -a $install/usr/lib/edje $fs/usr/lib
35 cp -a $install/usr/lib/elementary $fs/usr/lib
36 rm -f $fs/usr/lib/*/modules/*/*/*.la
37 cp -a $install/usr/lib/*.so* $fs/usr/lib
38 # Package: libelementary
39 rm -f $fs/usr/lib/libelementary.so.*
40 # share
41 cp -a $install/usr/share/elementary $fs/usr/share
42 }