wok annotate eio/receipt @ rev 15274

mingw32-gcc: remove a wrong error trigger
author Pascal Bellard <pascal.bellard@slitaz.org>
date Wed Sep 25 16:27:31 2013 +0000 (2013-09-25)
parents d3e76f1e0aee
children 08e976a9beb3
rev   line source
pankso@13637 1 # SliTaz package receipt.
pankso@13637 2
pankso@13637 3 PACKAGE="eio"
domcox@14937 4 VERSION="1.7.8"
pankso@13637 5 CATEGORY="base-system"
domcox@14665 6 SHORT_DESC="EFL Async I/O library."
pankso@13637 7 MAINTAINER="pankso@slitaz.org"
pascal@14996 8 LICENSE="LGPL2.1"
pankso@13637 9 TARBALL="$PACKAGE-$VERSION.tar.gz"
pankso@13637 10 WEB_SITE="http://www.enlightenment.org/"
pankso@13637 11 WGET_URL="http://download.enlightenment.org/releases/$TARBALL"
domcox@14400 12 TAGS="e enlightenment efl"
pankso@13637 13
domcox@14400 14 DEPENDS="ecore"
domcox@14400 15 BUILD_DEPENDS="ecore-dev"
pankso@13637 16
pankso@13637 17 # Rules to configure and make the package.
pankso@13637 18 compile_rules()
pankso@13637 19 {
domcox@14294 20 CFLAGS="$CFLAGS -fvisibility=hidden"
domcox@14294 21 LDFLAGS="$LDFLAGS -fvisibility=hidden"
domcox@14294 22 export LDFLAGS
domcox@14665 23
domcox@14294 24 ./configure $CONFIGURE_ARGS &&
domcox@14665 25 make $MAKEFLAGS && make install
pankso@13637 26 }
pankso@13637 27
pankso@13637 28 # Rules to gen a SliTaz package suitable for Tazpkg.
pankso@13637 29 genpkg_rules()
pankso@13637 30 {
pankso@13637 31 mkdir -p $fs/usr/lib
pankso@13637 32 cp -a $install/usr/lib/*.so* $fs/usr/lib
pankso@13637 33 }