# $Id: PKGBUILD 59548 2011-11-28 01:04:30Z seblu $ # Maintainer: Sebastien Luttringer # Contributor: Baumi pkgname=sfk pkgver=1.6.4 pkgrel=2 pkgdesc='Swiss File Knife - A Command Line Tools Collection' arch=('i686' 'x86_64') url='http://stahlforce.com/dev/?tool=sfk' license=('custom: BSD') source=("http://downloads.sourceforge.net/swissfileknife/${pkgname}${pkgver//./}.zip") md5sums=('263df6a8e18f6ebb6032f3c048df0b6d') build() { cd ${pkgname}${pkgver//./} g++ $CXXFLAGS $LDFLAGS sfk.cpp sfknet.cpp patch.cpp inst.cpp -o sfk } package() { cd ${pkgname}${pkgver//./} install -D -m755 $pkgname "$pkgdir/usr/bin/$pkgname" install -D -m444 bsd-license.txt "$pkgdir/usr/share/licenses/$pkgname/LICENSE" } # vim:set ts=2 sw=2 ft=sh et: