wok annotate fwbuilder/receipt @ rev 20257

Add giflossy
author Pascal Bellard <pascal.bellard@slitaz.org>
date Tue Mar 13 23:27:32 2018 +0100 (2018-03-13)
parents 68ec33732967
children f21e99212ae4
rev   line source
pascal@11548 1 # SliTaz package receipt.
pascal@11548 2
pascal@11548 3 PACKAGE="fwbuilder"
pascal@11548 4 VERSION="5.0.0.3568"
pascal@11548 5 CATEGORY="network"
pascal@11548 6 SHORT_DESC="Firewall management GUI."
pascal@11548 7 MAINTAINER="pascal.bellard@slitaz.org"
pascal@15215 8 LICENSE="GPL2"
pascal@11548 9 WEB_SITE="http://www.fwbuilder.org/"
pascal@11548 10 TARBALL="$PACKAGE-$VERSION.tar.gz"
pascal@11548 11 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
pascal@11548 12
pascal@11548 13 DEPENDS="libxml2 libxslt zlib libQtGui libQtNetwork libQtCore"
monghitri@13992 14 BUILD_DEPENDS="qmake libxslt-dev Qt4-dev autoconf automake libtool"
pascal@11548 15
pascal@11548 16 # Rules to configure and make the package.
pascal@11548 17 compile_rules()
pascal@11548 18 {
pascal@11548 19 cd $src
pascal@11548 20 sed -i 's/Categories=.*/Categories=GNOME;Application;System;/' src/res/fwbuilder.desktop
pascal@11548 21 ./autogen.sh
pascal@11548 22 ./configure --prefix=/usr --infodir=/usr/share/info \
pascal@11548 23 --mandir=/usr/share/man \
pascal@11548 24 $CONFIGURE_ARGS &&
pascal@11548 25 make &&
pascal@11548 26 make INSTALL_ROOT=$DESTDIR install
pascal@11548 27 }
pascal@11548 28
pascal@11548 29 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@11548 30 genpkg_rules()
pascal@11548 31 {
pascal@15215 32 cp -a $install/* $fs
pascal@11548 33 }