wok annotate fuseiso/receipt @ rev 20315

openssl: force MACHINE
author Pascal Bellard <pascal.bellard@slitaz.org>
date Fri May 18 16:12:43 2018 +0200 (2018-05-18)
parents 02bbaa9d12ba
children e3f377fbc5f0
rev   line source
erjo@460 1 # SliTaz package receipt.
erjo@460 2
erjo@460 3 PACKAGE="fuseiso"
erjo@460 4 VERSION="20070708"
erjo@460 5 CATEGORY="system-tools"
erjo@460 6 SHORT_DESC="Using FUSE to mount ISO filesystem"
erjo@784 7 MAINTAINER="erjo@slitaz.org"
pascal@15000 8 LICENSE="GPL2"
erjo@460 9 TARBALL="$PACKAGE-$VERSION.tar.bz2"
erjo@460 10 WEB_SITE="http://fuse.sourceforge.net/wiki/index.php/FuseIso"
erjo@460 11 WGET_URL="http://ubiz.ru/dm/$TARBALL"
erjo@460 12
pascal@15000 13 DEPENDS="fuse glib zlib"
pascal@15000 14 BUILD_DEPENDS="fuse fuse-dev glib-dev"
pascal@15000 15
erjo@460 16 # Rules to configure and make the package.
erjo@460 17 compile_rules()
erjo@460 18 {
erjo@460 19 cd $src
pascal@1514 20 ./configure --prefix=/usr $CONFIGURE_ARGS &&
pascal@1514 21 make &&
pascal@15000 22 make DESTDIR=$DESTDIR install
erjo@460 23 }
erjo@460 24
erjo@460 25 # Rules to gen a SliTaz package suitable for Tazpkg.
erjo@460 26 genpkg_rules()
erjo@460 27 {
erjo@460 28 mkdir -p $fs/usr
pascal@15000 29 cp -a $install/usr/bin $fs/usr
erjo@460 30 }
erjo@460 31