aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
Diffstat (limited to 'Library')
-rw-r--r--Library/Formula/lastfmlib.rb15
1 files changed, 15 insertions, 0 deletions
diff --git a/Library/Formula/lastfmlib.rb b/Library/Formula/lastfmlib.rb
new file mode 100644
index 000000000..2c7ae5a21
--- /dev/null
+++ b/Library/Formula/lastfmlib.rb
@@ -0,0 +1,15 @@
+require 'formula'
+
+class Lastfmlib < Formula
+ url 'http://lastfmlib.googlecode.com/files/lastfmlib-0.4.0.tar.gz'
+ homepage 'http://code.google.com/p/lastfmlib/'
+ md5 'f6f00882c15b8cc703718d22e1b1871f'
+
+ depends_on 'pkg-config' => :build
+
+ def install
+ system "./configure", "--disable-dependency-tracking",
+ "--prefix=#{prefix}"
+ system "make install"
+ end
+end