mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-28 22:57:37 +00:00
21 lines
646 B
Bash
21 lines
646 B
Bash
# $Id: PKGBUILD 52010 2009-09-14 01:31:24Z kevin $
|
|
# Contributor: Tom Newsom <Jeepster@gmx.co.uk>
|
|
# Maintainer: Kevin Piche <kevin@archlinux.org>
|
|
|
|
pkgname=fwbuilder
|
|
pkgver=3.0.6
|
|
pkgrel=1
|
|
pkgdesc="Object-oriented GUI and set of compilers for various firewall platforms"
|
|
arch=(i686 x86_64)
|
|
license=('GPL')
|
|
depends=("libfwbuilder>=${pkgver}" 'qt>=4.3')
|
|
source=(http://dl.sourceforge.net/sourceforge/fwbuilder/${pkgname}-${pkgver}.tar.gz)
|
|
url="http://www.fwbuilder.org/"
|
|
md5sums=('421a72828040189d9dabcc2b378d27a3')
|
|
|
|
build() {
|
|
cd ${srcdir}/${pkgname}-${pkgver}
|
|
./configure --prefix=/usr
|
|
make || return 1
|
|
make INSTALL_ROOT=${pkgdir} install
|
|
}
|