wok view eio/receipt @ rev 18687

libQtOpenGL: fix description
author Yuri Pourre <yuripourre@gmail.com>
date Thu Dec 10 13:33:41 2015 -0200 (2015-12-10)
parents 08e976a9beb3
children 86790a278e70
line source
1 # SliTaz package receipt.
3 PACKAGE="eio"
4 VERSION="1.7.10"
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"
13 HOST_ARCH="i486 arm"
15 DEPENDS="ecore"
16 BUILD_DEPENDS="ecore-dev"
18 # Rules to configure and make the package.
19 compile_rules()
20 {
21 CFLAGS="$CFLAGS -fvisibility=hidden"
22 LDFLAGS="$LDFLAGS -fvisibility=hidden"
23 export LDFLAGS
25 ./configure $CONFIGURE_ARGS &&
26 make $MAKEFLAGS && make install
27 }
29 # Rules to gen a SliTaz package suitable for Tazpkg.
30 genpkg_rules()
31 {
32 mkdir -p $fs/usr/lib
33 cp -a $install/usr/lib/*.so* $fs/usr/lib
34 }