2008-08-25 09:59:58 +10:00
|
|
|
# Description: The Gnutella plug-in for giFT.
|
2007-06-27 02:51:41 +10:00
|
|
|
# URL: http://gift.sourceforge.net/
|
2008-03-26 13:45:31 +11:00
|
|
|
# Maintainer: Danny Rawlins, monster dot romster at gmail dot com
|
2008-08-25 09:59:58 +10:00
|
|
|
# Packager: Coviello Giuseppe, giuseppecoviello at tin dot it
|
2007-06-27 02:51:41 +10:00
|
|
|
# Depends on: gift
|
|
|
|
|
|
|
|
name=gift-gnutella
|
|
|
|
version=0.0.11
|
|
|
|
release=1
|
2009-07-09 19:11:49 +10:00
|
|
|
source=(http://downloads.sourceforge.net/sourceforge/gift/gift-gnutella-$version.tar.bz2
|
2008-08-25 09:59:58 +10:00
|
|
|
http://update.kceasy.com/update/gnutella/nodes.gzip
|
|
|
|
http://update.kceasy.com/update/gnutella/hostiles.txt.gzip
|
2008-03-25 00:35:18 +11:00
|
|
|
http://update.kceasy.com/update/gnutella/gwebcaches.gzip)
|
2007-06-27 02:51:41 +10:00
|
|
|
|
|
|
|
build() {
|
|
|
|
cd gift-gnutella-$version
|
|
|
|
./configure --prefix=/usr
|
|
|
|
make
|
|
|
|
make DESTDIR=$PKG install
|
2008-08-25 09:59:58 +10:00
|
|
|
zcat $SRC/nodes.gzip |tr -d '\r' > $PKG/usr/share/giFT/Gnutella/nodes
|
|
|
|
zcat $SRC/hostiles.txt.gzip |tr -d '\r' > $PKG/usr/share/giFT/Gnutella/hostiles.txt
|
|
|
|
zcat $SRC/gwebcaches.gzip |tr -d '\r' > $PKG/usr/share/giFT/Gnutella/gwebcaches
|
2007-06-27 02:51:41 +10:00
|
|
|
}
|
|
|
|
|