wok annotate fusecloop/receipt @ rev 20357

GnuPG: add also libusb sqlite openldap npth
author Erkan Yilmaz <erkan@slitaz.org>
date Sat Jun 09 16:43:28 2018 +0000 (2018-06-09)
parents 1e6252d97317
children 550ebe21c230
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@19557 12 ADVANCECOMP_VERSION="1.23"
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@16999 16
pascal@12214 17 DEPENDS="fuse zlib gcc-lib-base"
pascal@19557 18 BUILD_DEPENDS="fuse-dev zlib-dev automake"
pascal@16999 19 SUGGESTED="fuseiso cloop-utils"
pascal@4911 20
pascal@4911 21 # Rules to configure and make the package.
pascal@4911 22 compile_rules()
pascal@4911 23 {
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@17170 32 sed -i 's/Z_BEST_COMPRESSION/Z_BEST_SPEED/' create_compressed_fs.c
pascal@12214 33 sed -i 's/def FIND_BEST_COMPRESSION/ 1/' $ADVANCECOMP/redef.cc
pascal@4911 34 ./configure --prefix=/usr --infodir=/usr/share/info \
pascal@4911 35 --mandir=/usr/share/man $CONFIGURE_ARGS &&
pascal@12214 36 make &&
pascal@12214 37 cd $ADVANCECOMP &&
pascal@19557 38 ./autogen.sh
pascal@19557 39 automake --add-missing
pascal@12214 40 ./configure --prefix=/usr --infodir=/usr/share/info \
pascal@12214 41 --mandir=/usr/share/man $CONFIGURE_ARGS &&
pascal@12214 42 make advdef
pascal@4911 43 }
pascal@4911 44
pascal@4911 45 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@4911 46 genpkg_rules()
pascal@4911 47 {
pascal@4911 48 mkdir -p $fs/usr/bin
pascal@4911 49 cp $src/fusecloop $fs/usr/bin
pascal@4911 50 }
pascal@4911 51