# HG changeset patch # User Christophe Lincoln # Date 1353020575 -3600 # Node ID 2df136ea717bace5dae3ddc6f22dd0f6154b84e8 # Parent 2e4ccce85409b1617f78476f6d6e388abc0b1da2 Add eio (E17 async I/O library) diff -r 2e4ccce85409 -r 2df136ea717b eio-dev/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/eio-dev/receipt Fri Nov 16 00:02:55 2012 +0100 @@ -0,0 +1,21 @@ +# SliTaz package receipt. + +PACKAGE="eio-dev" +VERSION="1.7.1" +CATEGORY="development" +SHORT_DESC="E17 Eio devel files." +MAINTAINER="pankso@slitaz.org" +WANTED="eio" +WEB_SITE="http://www.enlightenment.org/" + +DEPENDS="" + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + mkdir -p $fs/usr/lib + cp -a $install/usr/include $fs/usr + cp -a $install/usr/lib/*.*a $fs/usr/lib + cp -a $install/usr/lib/pkgconfig $fs/usr/lib +} + diff -r 2e4ccce85409 -r 2df136ea717b eio/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/eio/receipt Fri Nov 16 00:02:55 2012 +0100 @@ -0,0 +1,28 @@ +# SliTaz package receipt. + +PACKAGE="eio" +VERSION="1.7.1" +CATEGORY="base-system" +SHORT_DESC="Enlightenment's - Eio, async I/O library... ." +MAINTAINER="pankso@slitaz.org" +TARBALL="$PACKAGE-$VERSION.tar.gz" +WEB_SITE="http://www.enlightenment.org/" +WGET_URL="http://download.enlightenment.org/releases/$TARBALL" + +DEPENDS="eina eet ecore" +BUILD_DEPENDS="eina-dev eet-dev ecore-dev jpeg-dev" + +# Rules to configure and make the package. +compile_rules() +{ + cd $src + ./configure $CONFIGURE_ARGS && + make && make install +} + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + mkdir -p $fs/usr/lib + cp -a $install/usr/lib/*.so* $fs/usr/lib +}