wok annotate iksemel/receipt @ rev 1413

Add WEB_SITE for libedit-dev nomad pygobject pygobject-dev xpat2
author Pascal Bellard <pascal.bellard@slitaz.org>
date Thu Sep 25 08:02:56 2008 +0000 (2008-09-25)
parents
children d4b11bc7b0e1
rev   line source
pascal@1177 1 # SliTaz package receipt.
pascal@1177 2
pascal@1177 3 PACKAGE="iksemel"
pascal@1177 4 VERSION="1.2"
pascal@1177 5 CATEGORY="network"
pascal@1177 6 SHORT_DESC="XML parser library for Jabber applications."
pascal@1177 7 MAINTAINER="pascal.bellard@slitaz.org"
pascal@1177 8 WEB_SITE="http://iksemel.jabberstudio.org/"
pascal@1177 9 TARBALL="$PACKAGE-$VERSION.tar.gz"
pascal@1177 10 WGET_URL="http://jabberstudio.rediris.es/$PACKAGE/$TARBALL"
pascal@1177 11
pascal@1177 12 # Rules to configure and make the package.
pascal@1177 13 compile_rules()
pascal@1177 14 {
pascal@1177 15 cd $src
pascal@1177 16 ./configure --prefix=/usr --infodir=/usr/share/info \
pascal@1177 17 --mandir=/usr/share/man $CONFIGURE_ARGS
pascal@1177 18 make
pascal@1177 19 make DESTDIR=$PWD/_pkg install
pascal@1177 20 }
pascal@1177 21
pascal@1177 22 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@1177 23 genpkg_rules()
pascal@1177 24 {
pascal@1177 25 mkdir -p $fs/usr/lib
pascal@1177 26 cp -a $_pkg/usr/bin $fs/usr
pascal@1177 27 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
pascal@1177 28 cp -a $_pkg/usr/lib/pkgconfig $fs/usr/lib
pascal@1177 29 }
pascal@1177 30