# HG changeset patch # User Pascal Bellard # Date 1217712907 0 # Node ID 8f3422e1b2d20a3b56f44fe5d8a136c0a9285cf6 # Parent 7cb0c089e287e15e806b4a3c2f80511e79144ff5 Add iksemel diff -r 7cb0c089e287 -r 8f3422e1b2d2 iksemel-dev/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/iksemel-dev/receipt Sat Aug 02 21:35:07 2008 +0000 @@ -0,0 +1,17 @@ +# SliTaz package receipt. + +PACKAGE="iksemel-dev" +VERSION="1.2" +CATEGORY="development" +SHORT_DESC="XML parser library for Jabber applications." +MAINTAINER="pascal.bellard@slitaz.org" +WEB_SITE="http://iksemel.jabberstudio.org/" +WANTED="iksemel" + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + mkdir -p $fs/usr/lib $fs/usr/share + cp -a $_pkg/usr/include $fs/usr + cp -a $_pkg/usr/lib/*a $fs/usr/lib +} diff -r 7cb0c089e287 -r 8f3422e1b2d2 iksemel/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/iksemel/receipt Sat Aug 02 21:35:07 2008 +0000 @@ -0,0 +1,30 @@ +# SliTaz package receipt. + +PACKAGE="iksemel" +VERSION="1.2" +CATEGORY="network" +SHORT_DESC="XML parser library for Jabber applications." +MAINTAINER="pascal.bellard@slitaz.org" +WEB_SITE="http://iksemel.jabberstudio.org/" +TARBALL="$PACKAGE-$VERSION.tar.gz" +WGET_URL="http://jabberstudio.rediris.es/$PACKAGE/$TARBALL" + +# Rules to configure and make the package. +compile_rules() +{ + cd $src + ./configure --prefix=/usr --infodir=/usr/share/info \ + --mandir=/usr/share/man $CONFIGURE_ARGS + make + make DESTDIR=$PWD/_pkg install +} + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + mkdir -p $fs/usr/lib + cp -a $_pkg/usr/bin $fs/usr + cp -a $_pkg/usr/lib/*.so* $fs/usr/lib + cp -a $_pkg/usr/lib/pkgconfig $fs/usr/lib +} +