wok annotate fusecloop/receipt @ rev 16434

Merge branches
author Aleksej Bobylev <al.bobylev@gmail.com>
date Fri Apr 18 13:51:05 2014 +0300 (2014-04-18)
parents b2a632fc9587
children fe86f04738d9
rev   line source
pascal@4911 1 # SliTaz package receipt.
pascal@4911 2
pascal@4911 3 PACKAGE="fusecloop"
pascal@10932 4 VERSION="0.20.1"
pascal@4911 5 CATEGORY="system-tools"
pascal@4911 6 SHORT_DESC="Mount cloop image in user space with fuse."
pascal@4911 7 MAINTAINER="pascal.bellard@slitaz.org"
pascal@14714 8 LICENSE="GPL2"
pascal@10932 9 TARBALL="$PACKAGE-$VERSION.tar.gz"
pascal@10934 10 WEB_SITE="http://fusecloop.sourceforge.net/"
pascal@4911 11 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
pascal@12214 12 ADVANCECOMP_VERSION="1.15"
pascal@12214 13 ADVANCECOMP_TARBALL="advancecomp-$ADVANCECOMP_VERSION.tar.gz"
pascal@12214 14 ADVANCECOMP_URL="$SF_MIRROR/advancemame/$ADVANCECOMP_TARBALL"
pascal@14337 15 EXTRA_SOURCE_FILES="$ADVANCECOMP_TARBALL"
pascal@12214 16 DEPENDS="fuse zlib gcc-lib-base"
pascal@4911 17 BUILD_DEPENDS="fuse-dev zlib-dev"
pascal@4911 18 SUGGESTED="fuseiso"
pascal@4911 19
pascal@4911 20 # Rules to configure and make the package.
pascal@4911 21 compile_rules()
pascal@4911 22 {
pascal@4911 23 cd $src
pascal@12214 24 [ -s $SOURCES_REPOSITORY/$ADVANCECOMP_TARBALL ] ||
pascal@12214 25 wget -P $SOURCES_REPOSITORY $ADVANCECOMP_URL
pascal@12214 26 tar xzf $SOURCES_REPOSITORY/$ADVANCECOMP_TARBALL
pascal@4911 27 sed -i 's/dprintf/d_printf/g' *.h *.c
pascal@10934 28 patch -p0 < $stuff/fusecloop.u
pascal@12214 29 ADVANCECOMP=advancecomp-$ADVANCECOMP_VERSION
pascal@12214 30 cp *.h *.c $ADVANCECOMP
pascal@12214 31 cp create_compressed_fs.c $ADVANCECOMP/redef.cc
pascal@12214 32 sed -i 's/def FIND_BEST_COMPRESSION/ 1/' $ADVANCECOMP/redef.cc
pascal@4911 33 ./configure --prefix=/usr --infodir=/usr/share/info \
pascal@4911 34 --mandir=/usr/share/man $CONFIGURE_ARGS &&
pascal@12214 35 make &&
pascal@12214 36 cd $ADVANCECOMP &&
pascal@12214 37 ./configure --prefix=/usr --infodir=/usr/share/info \
pascal@12214 38 --mandir=/usr/share/man $CONFIGURE_ARGS &&
pascal@12214 39 make advdef
pascal@4911 40 }
pascal@4911 41
pascal@4911 42 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@4911 43 genpkg_rules()
pascal@4911 44 {
pascal@4911 45 mkdir -p $fs/usr/bin
pascal@4911 46 cp $src/fusecloop $fs/usr/bin
pascal@4911 47 cp $src/extract_compressed_fs $fs/usr/bin
pascal@12214 48 cp $src/advancecomp-*/advdef $fs/usr/bin/create_compressed_fs
pascal@4911 49 }
pascal@4911 50