wok-next view efreet/receipt @ rev 20443

The rest of my "home work" for update many packages (up to Xorg, GTK and Openbox) for Next and mainly for Next64. Since this point this repository is open for commits. Many errors are expected due to harfbuzz-freetype dependency loop...
author Aleksej Bobylev <al.bobylev@gmail.com>
date Sat Feb 24 16:17:33 2018 +0200 (2018-02-24)
parents 689fcc83daec
children c4e53a39395a
line source
1 # SliTaz package receipt v2.
3 PACKAGE="efreet"
4 VERSION="1.7.10"
5 CATEGORY="base-system"
6 SHORT_DESC="EFL library for handling of freedesktop.org specs"
7 MAINTAINER="pankso@slitaz.org"
8 LICENSE="BSD"
9 WEB_SITE="http://www.enlightenment.org/"
10 HOST_ARCH="i486 arm"
12 TARBALL="$PACKAGE-$VERSION.tar.gz"
13 WGET_URL="http://download.enlightenment.org/releases/$TARBALL"
15 BUILD_DEPENDS="ecore-dev"
16 SPLIT="efreet-dev"
18 compile_rules() {
19 export CFLAGS="$CFLAGS -fvisibility=hidden"
20 export LDFLAGS="$LDFLAGS -fvisibility=hidden"
22 ./configure \
23 --disable-doc \
24 $CONFIGURE_ARGS &&
25 make $MAKEFLAGS && make install
26 }
28 genpkg_rules() {
29 case $PACKAGE in
30 efreet)
31 copy @std
32 DEPENDS="ecore"
33 TAGS="e enlightenment efl"
34 ;;
35 efreet-dev)
36 copy @dev
37 DEPENDS="ecore-dev pkg-config"
38 ;;
39 esac
40 }