wok rev 15367

Add wimlib
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat Oct 12 12:04:33 2013 +0000 (2013-10-12)
parents e5384ace4df2
children db33cd473e3e
files apache-mod-perl/receipt memtest/stuff/pack wimlib/receipt
line diff
     1.1 --- a/apache-mod-perl/receipt	Fri Oct 04 09:55:59 2013 +0000
     1.2 +++ b/apache-mod-perl/receipt	Sat Oct 12 12:04:33 2013 +0000
     1.3 @@ -1,7 +1,7 @@
     1.4  # SliTaz package receipt.
     1.5  
     1.6  PACKAGE="apache-mod-perl"
     1.7 -VERSION="2.0.5"
     1.8 +VERSION="2.0.7"
     1.9  CATEGORY="network"
    1.10  SHORT_DESC="PERL module for Apache"
    1.11  MAINTAINER="erjo@slitaz.org"
    1.12 @@ -18,8 +18,11 @@
    1.13  compile_rules()
    1.14  {
    1.15  	cd $src
    1.16 -	perl Makefile.PL MP_APXS=/usr/bin/apxs && \
    1.17 -	make && \
    1.18 +	sed -i 's/c->remote_ip/r->useragent_ip/' \
    1.19 +		src/modules/perl/modperl_interp.c
    1.20 +	perl Makefile.PL MP_APXS=/usr/bin/apxs \
    1.21 +			 MP_APR_CONFIG=/usr/bin/apr-1-config &&
    1.22 +	make &&
    1.23  	make DESTDIR=$DESTDIR install
    1.24  }
    1.25  
     2.1 --- a/memtest/stuff/pack	Fri Oct 04 09:55:59 2013 +0000
     2.2 +++ b/memtest/stuff/pack	Sat Oct 12 12:04:33 2013 +0000
     2.3 @@ -29,7 +29,7 @@
     2.4  
     2.5  compress()
     2.6  {
     2.7 -	xz -z -e --format=lzma --lzma1=mode=normal --stdout
     2.8 +	xz -z -e --format=lzma --lzma1=mf=bt2 --stdout
     2.9  }
    2.10  
    2.11  main()
     3.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     3.2 +++ b/wimlib/receipt	Sat Oct 12 12:04:33 2013 +0000
     3.3 @@ -0,0 +1,29 @@
     3.4 +# SliTaz package receipt.
     3.5 +
     3.6 +PACKAGE="wimlib"
     3.7 +VERSION="1.5.1"
     3.8 +CATEGORY="utilities"
     3.9 +SHORT_DESC="Library to create, extract, and modify Windows Imaging (WIM) files."
    3.10 +MAINTAINER="pascal.bellard@slitaz.org"
    3.11 +LICENSE="GPL3"
    3.12 +TARBALL="$PACKAGE-$VERSION.tar.gz"
    3.13 +WEB_SITE="http://sourceforge.net/projects/wimlib/"
    3.14 +WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
    3.15 +
    3.16 +DEPENDS="libxml2 fuse ntfs-3g libcrypto zlib mtools cdrkit syslinux cabextract"
    3.17 +BUILD_DEPENDS="pkg-config libxml2-dev fuse-dev ntfs-3g-dev openssl-dev \
    3.18 +attr-dev mtools cdrkit syslinux cabextract"
    3.19 +
    3.20 +# Rules to configure and make the package.
    3.21 +compile_rules()
    3.22 +{
    3.23 +	cd $src
    3.24 +	./configure --prefix=/usr $CONFIGURE_ARGS &&
    3.25 +	make && make DESTDIR=$DESTDIR install
    3.26 +}
    3.27 +
    3.28 +# Rules to gen a SliTaz package suitable for Tazpkg.
    3.29 +genpkg_rules()
    3.30 +{
    3.31 +	cp -a $install/usr $fs
    3.32 +}