updated on Thu Jan 26 16:09:46 UTC 2012
[aur-mirror.git] / ssldump / PKGBUILD
blob6fc481fc2344c077e25fa866cb0e3ab09762932f
1 # Contributor: Sven Schulz <omee@archlinux.de>
2 # ------------------------------------------------------
3 # Sun, 28 Dec 2008 13:33:11 +0000
4 # moved to unsupported from extra repo
5 # ------------------------------------------------------
6 # Maintainer: dorphell <dorphell@archlinux.org>
7 # Contributor: Tom Newsom <Jeepster@gmx.co.uk>
9 pkgname=ssldump
10 pkgver=0.9b3
11 pkgrel=8
12 pkgdesc="an SSLv3/TLS network protocol analyzer"
13 url="http://www.rtfm.com/ssldump/"
14 license=('custom')
15 arch=('i686' 'x86_64')
16 depends=('libpcap>=1.0.0' 'openssl')
17 source=(http://www.rtfm.com/$pkgname/$pkgname-$pkgver.tar.gz
18         openssl-0.9.8.patch)
19 md5sums=('ac8c28fe87508d6bfb06344ec496b1dd'
20          '5757ee10663a6ded190537f3599453eb')
22 build() {
23           cd $startdir/src/$pkgname-$pkgver
24             patch -Np0 -i ../openssl-0.9.8.patch || return 1
26           #Arch64 fixes --build/host
27           ./configure --prefix=/usr \
28                       --build=i686-pc-linux-gnu \
29                       --host=i686-pc-linux-gnu
31           make || return 1
32           make prefix=$startdir/pkg/usr install
33           # install license
34           install -D -m644 COPYRIGHT $startdir/pkg/usr/share/licenses/$pkgname/LICENSE
35          }