mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-12-28 23:21:53 +00:00
21 lines
635 B
Bash
21 lines
635 B
Bash
|
# Maintainer: Daniel J Griffiths <ghost1227@archlinux.us>
|
||
|
# Maintainer: Dan McGee <dan@archlinux.org>
|
||
|
# Contributor: Tom Newsom <Jeepster@gmx.co.uk>
|
||
|
|
||
|
pkgname=gtk-gnutella
|
||
|
pkgver=0.96.6
|
||
|
pkgrel=1
|
||
|
pkgdesc="A Gnutella client written in C"
|
||
|
arch=('i686' 'x86_64')
|
||
|
license=('GPL')
|
||
|
url="http://gtk-gnutella.sourceforge.net/"
|
||
|
depends=('gnutls>=2.4.1' 'gtk2' 'libxml2')
|
||
|
source=(http://downloads.sourceforge.net/sourceforge/$pkgname/$pkgname-$pkgver.tar.bz2)
|
||
|
md5sums=('0f8f1241faf5c204b77a4ddfd878c148')
|
||
|
|
||
|
build() {
|
||
|
cd $srcdir/$pkgname-$pkgver
|
||
|
./build.sh --prefix=/usr --gtk2 --disable-dbus
|
||
|
make install INSTALL_PREFIX=$pkgdir || return 1
|
||
|
}
|