wok-stable rev 10231
Add mm-common. Needed for new libxml++.
author | Christopher Rogers <slaxemulator@gmail.com> |
---|---|
date | Sat May 21 00:27:17 2011 +0000 (2011-05-21) |
parents | 3acde357cf8c |
children | b592ccfadb62 |
files | libxml++-dev/receipt libxml++/receipt mm-common/receipt |
line diff
1.1 --- a/libxml++-dev/receipt Sat May 21 00:22:42 2011 +0000 1.2 +++ b/libxml++-dev/receipt Sat May 21 00:27:17 2011 +0000 1.3 @@ -1,7 +1,7 @@ 1.4 # SliTaz package receipt. 1.5 1.6 PACKAGE="libxml++-dev" 1.7 -VERSION="2.32.0" 1.8 +VERSION="2.34.1" 1.9 CATEGORY="development" 1.10 SHORT_DESC="libxml++ C++ wrapper devel files." 1.11 MAINTAINER="pankso@slitaz.org"
2.1 --- a/libxml++/receipt Sat May 21 00:22:42 2011 +0000 2.2 +++ b/libxml++/receipt Sat May 21 00:27:17 2011 +0000 2.3 @@ -1,23 +1,24 @@ 2.4 # SliTaz package receipt. 2.5 2.6 PACKAGE="libxml++" 2.7 -VERSION="2.32.0" 2.8 +VERSION="2.34.1" 2.9 CATEGORY="system-tools" 2.10 SHORT_DESC="C++ wrapper for the libxml XML parser library." 2.11 MAINTAINER="pankso@slitaz.org" 2.12 TARBALL="$PACKAGE-$VERSION.tar.bz2" 2.13 WEB_SITE="http://libxmlplusplus.sourceforge.net/" 2.14 -WGET_URL="http://ftp.gnome.org/pub/GNOME/sources/$PACKAGE/${VERSION%.*}/$TARBALL" 2.15 +WGET_URL="$GNOME_MIRROR/$PACKAGE/${VERSION%.*}/$TARBALL" 2.16 2.17 DEPENDS="glibmm libsigc++ libxml2 zlib gcc-lib-base" 2.18 -BUILD_DEPENDS="glibmm-dev libsigc++-dev libxml2-dev zlib-dev pkg-config" 2.19 +BUILD_DEPENDS="glibmm-dev libsigc++-dev libxml2-dev zlib-dev mm-common pkg-config" 2.20 2.21 # Rules to configure and make the package. 2.22 compile_rules() 2.23 { 2.24 cd $src 2.25 ./configure --prefix=/usr \ 2.26 - --disable-documentation && 2.27 + --disable-documentation \ 2.28 + $CONFIGURE_ARGS && 2.29 make && 2.30 make DESTDIR=$DESTDIR install 2.31 }
3.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 3.2 +++ b/mm-common/receipt Sat May 21 00:27:17 2011 +0000 3.3 @@ -0,0 +1,25 @@ 3.4 +# SliTaz package receipt. 3.5 + 3.6 +PACKAGE="mm-common" 3.7 +VERSION="0.9.4" 3.8 +CATEGORY="development" 3.9 +SHORT_DESC="Common build files of the C++ bindings" 3.10 +MAINTAINER="slaxemulator@gmail.com" 3.11 +TARBALL="$PACKAGE-$VERSION.tar.bz2" 3.12 +WEB_SITE="http://gtkmm.org" 3.13 +WGET_URL="$GNOME_MIRROR/$PACKAGE/${VERSION%.*}/$TARBALL" 3.14 + 3.15 +# Rules to configure and make the package. 3.16 +compile_rules() 3.17 +{ 3.18 + cd $src 3.19 + ./configure --prefix=/usr && make && make install 3.20 +} 3.21 + 3.22 +# Rules to gen a SliTaz package suitable for Tazpkg. 3.23 +genpkg_rules() 3.24 +{ 3.25 + mkdir -p $fs 3.26 + cp -a $_pkg/usr $fs 3.27 +} 3.28 +