wok annotate iksemel/receipt @ rev 16345
Up: slitaz-configs (5.3) With new Slitaz Tiny Screen desktop files and tools
author | Christophe Lincoln <pankso@slitaz.org> |
---|---|
date | Sat Apr 12 20:04:10 2014 +0200 (2014-04-12) |
parents | 8ed62ecac0c7 |
children | 8dd8bab3f0ca |
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@15600 | 8 LICENSE="LGPL2.1" |
pascal@1177 | 9 WEB_SITE="http://iksemel.jabberstudio.org/" |
pascal@1177 | 10 TARBALL="$PACKAGE-$VERSION.tar.gz" |
pascal@1177 | 11 WGET_URL="http://jabberstudio.rediris.es/$PACKAGE/$TARBALL" |
pascal@1177 | 12 |
pascal@15597 | 13 DEPENDS="gnutls libgcrypt libgpg-error zlib pkg-config" |
pascal@15597 | 14 |
pascal@1177 | 15 # Rules to configure and make the package. |
pascal@1177 | 16 compile_rules() |
pascal@1177 | 17 { |
pascal@1177 | 18 cd $src |
pascal@1177 | 19 ./configure --prefix=/usr --infodir=/usr/share/info \ |
pascal@2481 | 20 --mandir=/usr/share/man $CONFIGURE_ARGS && |
pascal@2481 | 21 make && |
pascal@15600 | 22 make DESTDIR=$DESTDIR install |
pascal@1177 | 23 } |
pascal@1177 | 24 |
pascal@1177 | 25 # Rules to gen a SliTaz package suitable for Tazpkg. |
pascal@1177 | 26 genpkg_rules() |
pascal@1177 | 27 { |
pascal@1177 | 28 mkdir -p $fs/usr/lib |
pascal@15600 | 29 cp -a $install/usr/bin $fs/usr |
pascal@15600 | 30 cp -a $install/usr/lib/*.so* $fs/usr/lib |
pascal@15600 | 31 cp -a $install/usr/lib/pkgconfig $fs/usr/lib |
pascal@1177 | 32 } |
pascal@1177 | 33 |