wok view eio/receipt @ rev 15009

clutter-gtk: typos
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sun Aug 11 10:36:09 2013 +0000 (2013-08-11)
parents d3e76f1e0aee
children 08e976a9beb3
line source
1 # SliTaz package receipt.
3 PACKAGE="eio"
4 VERSION="1.7.8"
5 CATEGORY="base-system"
6 SHORT_DESC="EFL Async I/O library."
7 MAINTAINER="pankso@slitaz.org"
8 LICENSE="LGPL2.1"
9 TARBALL="$PACKAGE-$VERSION.tar.gz"
10 WEB_SITE="http://www.enlightenment.org/"
11 WGET_URL="http://download.enlightenment.org/releases/$TARBALL"
12 TAGS="e enlightenment efl"
14 DEPENDS="ecore"
15 BUILD_DEPENDS="ecore-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 $CONFIGURE_ARGS &&
25 make $MAKEFLAGS && 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 }