wok-undigest rev 977

Add s3ql
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat Apr 06 16:42:10 2013 +0200 (2013-04-06)
parents 73f4c63edeef
children 0ab1a83593c0
files ovzkernel/receipt s3ql/receipt
line diff
     1.1 --- a/ovzkernel/receipt	Thu Apr 04 15:27:58 2013 +0000
     1.2 +++ b/ovzkernel/receipt	Sat Apr 06 16:42:10 2013 +0200
     1.3 @@ -41,6 +41,8 @@
     1.4  	done <<EOT
     1.5  patch-dzhanibekov.1-combined.u
     1.6  EOT
     1.7 +	sed -i 's/m elf_x86_64/m64/;s/m elf_i386/m32/' arch/x86/vdso/Makefile
     1.8 +	
     1.9  	# Prepare to build
    1.10  	make mrproper 
    1.11  
    1.12 @@ -56,11 +58,11 @@
    1.13  	# Apply kernel config and build
    1.14  	yes '' | make  oldconfig && \
    1.15  		make LOCALVERSION=${LOCALVERSION} prepare 
    1.16 -	make bzImage && \
    1.17 -	make modules
    1.18 +	make bzImage &&
    1.19 +	make modules &&
    1.20  	
    1.21  	# Install modules and headers
    1.22 -	make INSTALL_MOD_PATH=$PWD/_pkg modules_install
    1.23 +	make INSTALL_MOD_PATH=$PWD/_pkg modules_install &&
    1.24  	make INSTALL_HDR_PATH=$PWD/_pkg/usr headers_install 
    1.25  	
    1.26  	# Get kernel release 
     2.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     2.2 +++ b/s3ql/receipt	Sat Apr 06 16:42:10 2013 +0200
     2.3 @@ -0,0 +1,33 @@
     2.4 +# SliTaz package receipt.
     2.5 +
     2.6 +PACKAGE="s3ql"
     2.7 +VERSION="1.13.2"
     2.8 +CATEGORY="network"
     2.9 +SHORT_DESC="A file system for Google Storage, Amazon S3 or OpenStack."
    2.10 +MAINTAINER="pascal.bellard@slitaz.org"
    2.11 +TARBALL="$PACKAGE-$VERSION.tar.bz2"
    2.12 +WEB_SITE="http://code.google.com/p/$PACKAGE/"
    2.13 +WGET_URL="http://$PACKAGE.googlecode.com/files/$TARBALL"
    2.14 +
    2.15 +DEPENDS="sqlite"
    2.16 +# python-llfuse pyliblzma python-apsw pycryptopp 
    2.17 +# http://code.google.com/p/python-llfuse/
    2.18 +# http://pypi.python.org/pypi/pyliblzma
    2.19 +# http://code.google.com/p/apsw/
    2.20 +# http://pypi.python.org/pypi/pycryptopp
    2.21 +BUILD_DEPENDS="python-dev sqlite-dev"
    2.22 +
    2.23 +# Rules to configure and make the package.
    2.24 +compile_rules()
    2.25 +{
    2.26 +	cd $src
    2.27 +	python setup.py build &&
    2.28 +	python setup.py test &&
    2.29 +	python setup.py install --root=$DESTDIR
    2.30 +}
    2.31 +
    2.32 +# Rules to gen a SliTaz package suitable for Tazpkg.
    2.33 +genpkg_rules()
    2.34 +{
    2.35 +	cp -a $install/usr $fs
    2.36 +}