mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-12-08 23:03:46 +00:00
23 lines
630 B
Bash
23 lines
630 B
Bash
|
# $Id: PKGBUILD 82 2009-07-17 19:56:55Z aaron $
|
||
|
# Maintainer: Giovanni Scafora <linuxmania@gmail.com>
|
||
|
|
||
|
pkgname=ksniffer
|
||
|
pkgver=0.3.2
|
||
|
pkgrel=4
|
||
|
pkgdesc="A sniffing application for KDE"
|
||
|
arch=('i686' 'x86_64')
|
||
|
url="http://www.ksniffer.org"
|
||
|
license=('GPL2')
|
||
|
depends=('libpcap' 'kdelibs3')
|
||
|
source=(http://downloads.sourceforge.net/ksniffer/${pkgname}-${pkgver}.tar.bz2)
|
||
|
md5sums=('dee2cfc8b51d15857ee02382d2603a22')
|
||
|
|
||
|
build() {
|
||
|
cd ${startdir}/src/${pkgname}-${pkgver}
|
||
|
source /etc/profile.d/kde3.sh
|
||
|
source /etc/profile.d/qt3.sh
|
||
|
./configure --prefix=/opt/kde --without-arts
|
||
|
make || return 1
|
||
|
make DESTDIR=$startdir/pkg install
|
||
|
}
|