wok view eeze/receipt @ rev 14994

enlightenment: add license
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat Aug 10 09:09:41 2013 +0000 (2013-08-10)
parents c0dfa615b785
children b3af14ed31c2
line source
1 # SliTaz package receipt.
3 PACKAGE="eeze"
4 VERSION="1.7.8"
5 CATEGORY="x-window"
6 SHORT_DESC="EFL Device abstraction library."
7 MAINTAINER="pankso@slitaz.org"
8 TARBALL="$PACKAGE-$VERSION.tar.bz2"
9 LICENSE="BSD"
10 WEB_SITE="http://www.enlightenment.org/"
11 WGET_URL="http://download.enlightenment.org/releases/$TARBALL"
12 TAGS="e enlightenment efl"
14 DEPENDS="ecore udev"
15 BUILD_DEPENDS="ecore-dev udev-dev"
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 CFLAGS="$CFLAGS -fvisibility=hidden"
21 LDFLAGS="$LDFLAGS -fvisibility=hidden"
22 export LDFLAGS
24 ./configure --disable-doc $CONFIGURE_ARGS &&
25 make $MAKEFILE && make install
26 }
28 # Rules to gen a SliTaz package suitable for Tazpkg.
29 genpkg_rules()
30 {
31 mkdir -p $fs/usr/lib
32 cp -a $install/usr/lib/*.so* $fs/usr/lib
33 }