25 lines
868 B
Plaintext
25 lines
868 B
Plaintext
# Description: The Gnutella plug-in for giFT.
|
|
# URL: http://gift.sourceforge.net/
|
|
# Maintainer: Danny Rawlins, monster dot romster at gmail dot com
|
|
# Packager: Coviello Giuseppe, giuseppecoviello at tin dot it
|
|
# Depends on: gift
|
|
|
|
name=gift-gnutella
|
|
version=0.0.11
|
|
release=1
|
|
source=(http://downloads.sourceforge.net/project/gift/$name/$version/$name-$version.tar.bz2
|
|
http://update.kceasy.com/update/gnutella/nodes.gzip
|
|
http://update.kceasy.com/update/gnutella/hostiles.txt.gzip
|
|
http://update.kceasy.com/update/gnutella/gwebcaches.gzip)
|
|
|
|
build() {
|
|
cd $name-$version
|
|
./configure --prefix=/usr
|
|
make
|
|
make DESTDIR=$PKG install
|
|
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
|
|
}
|
|
|