updated on Mon Jan 16 20:00:43 UTC 2012
[aur-mirror.git] / voiphopper / PKGBUILD
blob8d85493547246f06e7573dd0bf55d33c3b42b997
1 # Contributor: fnord0 < fnord0 AT riseup DOT net >
3 pkgname=voiphopper
4 pkgver=2.00
5 pkgrel=1
6 pkgdesc="A security validation tool that tests to see if a PC can mimic the behavior of an IP Phone. It rapidly automates a VLAN Hop into the Voice VLAN."
7 arch=('i686' 'x86_64')
8 url="http://voiphopper.sourceforge.net/"
9 license=('GPLv3')
10 depends=('libpcap' 'gcc')
11 source=("http://downloads.sourceforge.net/sourceforge/${pkgname}/${pkgname}-${pkgver}.tar.gz")
12 md5sums=('ade32c1ebd965b69b01a92d654543e56')
13 sha1sums=('f2a325522e49462408391a96bd516a38c2b24950')
15 build() {
16   cd ${srcdir}/${pkgname}-${pkgver}
17   install -d ${pkgdir}/usr/share/voiphopper || return 1
18   install -d ${pkgdir}/usr/share/licenses/voiphopper || return 1
19   install -d ${pkgdir}/usr/bin || return 1
20   install -Dm644 LICENSE ${pkgdir}/usr/share/licenses/voiphopper/LICENSE || return 1
21   for doc in INSTALL README BUGS; do
22         install -Dm644 ${doc} ${pkgdir}/usr/share/voiphopper/${doc} || return 1
23   done
24   ./configure --prefix=/usr --mandir=/usr/share/man --libexecdir=/usr/lib || return 1
25   make || return 1
28 package() {
29   cd ${srcdir}/${pkgname}-${pkgver}
30   make DESTDIR="${pkgdir}" install || return 1