wok annotate iksemel/receipt @ rev 23989
syslinux: iso2exe/init should keep keyboard config
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Sat Dec 05 09:55:13 2020 +0000 (2020-12-05) |
parents | e476e0df1ff7 |
children | 5ea0ce1cecc0 |
rev | line source |
---|---|
pascal@1177 | 1 # SliTaz package receipt. |
pascal@1177 | 2 |
pascal@1177 | 3 PACKAGE="iksemel" |
Hans-G?nter@22944 | 4 VERSION="1.4.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" |
Hans-G?nter@22944 | 9 WEB_SITE="https://github.com/timothytylee/iksemel-1.4" |
Hans-G?nter@22944 | 10 |
pascal@1177 | 11 TARBALL="$PACKAGE-$VERSION.tar.gz" |
Hans-G?nter@22944 | 12 WGET_URL="https://github.com/timothytylee/$PACKAGE-${VERSION%.*}/archive/v$VERSION.tar.gz" |
pascal@1177 | 13 |
Hans-G?nter@22944 | 14 DEPENDS="gnutls libgcrypt libgpg-error pkg-config zlib" |
Hans-G?nter@22945 | 15 BUILD_DEPENDS="autoconf automake libtool texinfo" |
pascal@15597 | 16 |
pascal@1177 | 17 # Rules to configure and make the package. |
pascal@1177 | 18 compile_rules() |
pascal@1177 | 19 { |
Hans-G?nter@22944 | 20 ./autogen.sh && |
Hans-G?nter@22944 | 21 ./configure \ |
Hans-G?nter@22944 | 22 --prefix=/usr \ |
Hans-G?nter@22944 | 23 --infodir=/usr/share/info \ |
Hans-G?nter@22944 | 24 --mandir=/usr/share/man \ |
Hans-G?nter@22944 | 25 $CONFIGURE_ARGS && |
pascal@2481 | 26 make && |
pascal@15600 | 27 make DESTDIR=$DESTDIR install |
pascal@1177 | 28 } |
pascal@1177 | 29 |
pascal@1177 | 30 # Rules to gen a SliTaz package suitable for Tazpkg. |
pascal@1177 | 31 genpkg_rules() |
pascal@1177 | 32 { |
pascal@1177 | 33 mkdir -p $fs/usr/lib |
Hans-G?nter@22944 | 34 |
Hans-G?nter@22944 | 35 cp -a $install/usr/bin $fs/usr |
Hans-G?nter@22944 | 36 cp -a $install/usr/lib/*.so* $fs/usr/lib |
Hans-G?nter@22944 | 37 cp -a $install/usr/lib/pkgconfig $fs/usr/lib |
pascal@1177 | 38 } |