gtk-gnutella is a server/client for Gnutella.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
master
Steven Sartorius 2010-05-23 18:15:30 -04:00 committed by Adam Vandenberg
parent 6e9ecbb3aa
commit f6c49e3234
1 changed files with 16 additions and 0 deletions

16
Formula/gtk-gnutella.rb Normal file
View File

@ -0,0 +1,16 @@
require 'formula'
class GtkGnutella <Formula
url 'http://downloads.sourceforge.net/project/gtk-gnutella/gtk-gnutella/0.96.8/gtk-gnutella-0.96.8.tar.bz2'
homepage 'http://gtk-gnutella.sourceforge.net/en/?page=news'
md5 'a9424951fec62cc9f19f2086dc5137b5'
depends_on 'gtk+'
def install
system "./build.sh", "--prefix=#{prefix}", "--disable-nls"
system "make install"
rm_rf share+"pixmaps"
rm_rf share+"applications"
end
end