wok view fwbuilder/receipt @ rev 23806

linld: add isoboot
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sun May 24 16:16:52 2020 +0000 (2020-05-24)
parents 8dd8bab3f0ca
children 5ea0ce1cecc0
line source
1 # SliTaz package receipt.
3 PACKAGE="fwbuilder"
4 VERSION="5.3.7"
5 CATEGORY="network"
6 SHORT_DESC="Firewall management GUI."
7 MAINTAINER="pascal.bellard@slitaz.org"
8 LICENSE="GPL2"
9 WEB_SITE="https://github.com/fwbuilder"
11 TARBALL="$PACKAGE-$VERSION.tar.gz"
12 WGET_URL="$WEB_SITE/$PACKAGE/archive/v$VERSION.tar.gz"
14 DEPENDS="libQtCore libQtGui libQtNetwork libxml2 libxslt zlib"
15 BUILD_DEPENDS="autoconf automake file libtool libxslt-dev qmake Qt4-dev"
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 sed -i 's/Categories=.*/Categories=GNOME;Application;System;/' \
21 src/res/fwbuilder.desktop
23 ./autogen.sh &&
24 ./configure \
25 --prefix=/usr \
26 --infodir=/usr/share/info \
27 --mandir=/usr/share/man \
28 $CONFIGURE_ARGS &&
29 make &&
30 make INSTALL_ROOT=$DESTDIR install
31 }
33 # Rules to gen a SliTaz package suitable for Tazpkg.
34 genpkg_rules()
35 {
36 cp -a $install/* $fs
37 }