wok annotate libxml++/receipt @ rev 22023
Remove cat process
| author | Pascal Bellard <pascal.bellard@slitaz.org> |
|---|---|
| date | Sun Oct 20 12:39:13 2019 +0200 (2019-10-20) |
| parents | 4d989daf5de1 |
| children | 6831608a1b2a |
| rev | line source |
|---|---|
| pankso@2365 | 1 # SliTaz package receipt. |
| pankso@2365 | 2 |
| pankso@2365 | 3 PACKAGE="libxml++" |
| slaxemulator@12333 | 4 VERSION="2.34.2" |
| pankso@2365 | 5 CATEGORY="system-tools" |
| pankso@2365 | 6 SHORT_DESC="C++ wrapper for the libxml XML parser library." |
| pankso@2365 | 7 MAINTAINER="pankso@slitaz.org" |
| pascal@14718 | 8 LICENSE="LGPL2.1" |
| pankso@2365 | 9 TARBALL="$PACKAGE-$VERSION.tar.bz2" |
| pankso@2365 | 10 WEB_SITE="http://libxmlplusplus.sourceforge.net/" |
| slaxemulator@10231 | 11 WGET_URL="$GNOME_MIRROR/$PACKAGE/${VERSION%.*}/$TARBALL" |
| erjo@9952 | 12 |
| pascal@5003 | 13 DEPENDS="glibmm libsigc++ libxml2 zlib gcc-lib-base" |
| slaxemulator@10231 | 14 BUILD_DEPENDS="glibmm-dev libsigc++-dev libxml2-dev zlib-dev mm-common pkg-config" |
| pankso@2365 | 15 |
| pankso@2365 | 16 # Rules to configure and make the package. |
| pankso@2365 | 17 compile_rules() |
| pankso@2365 | 18 { |
| pankso@2365 | 19 cd $src |
| erjo@9952 | 20 ./configure --prefix=/usr \ |
| slaxemulator@10231 | 21 --disable-documentation \ |
| slaxemulator@10231 | 22 $CONFIGURE_ARGS && |
| pankso@2365 | 23 make && |
| erjo@9952 | 24 make DESTDIR=$DESTDIR install |
| pankso@2365 | 25 } |
| pankso@2365 | 26 |
| pankso@2365 | 27 # Rules to gen a SliTaz package suitable for Tazpkg. |
| pankso@2365 | 28 genpkg_rules() |
| pankso@2365 | 29 { |
| pankso@2365 | 30 mkdir -p $fs/usr/lib |
| pascal@14718 | 31 cp -a $install/usr/lib/*.so* $fs/usr/lib |
| pankso@2365 | 32 } |
| pankso@2365 | 33 |