blob: 010919ae23bdb04e8aefd7a5d5b03042e8f9abcb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
# $Id: PKGBUILD 17382 2010-05-24 09:44:48Z spupykin $
# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com>
# Contributor: Sergej Pupykin <pupykin.s+arch@gmail.com>
pkgname=cutter
pkgver=1.03
pkgrel=3
pkgdesc="TCP/IP Connection cutting on Linux Firewalls and Routers"
arch=('i686' 'x86_64' 'mips64el')
url="http://www.lowth.com/cutter/"
license=('GPL')
depends=(glibc)
source=(http://www.lowth.com/cutter/software/cutter-$pkgver.tgz)
md5sums=('50093db9b64277643969ee75b83ebbd1')
build() {
cd $startdir/src/$pkgname-$pkgver
make || return 1
install -D -m 0755 ./cutter $startdir/pkg/usr/bin/tcp-cutter
}
|