Created formula for giblib.

giblib is a simple library which wraps imlib2.

Signed-off-by: David Höppner <0xffea@gmail.com>
This commit is contained in:
Bertrand Marron 2011-02-11 21:33:36 +01:00 committed by David Höppner
parent 67cd52950d
commit 25e4e874f2

14
Formula/giblib.rb Normal file
View file

@ -0,0 +1,14 @@
require 'formula'
class Giblib <Formula
url 'http://linuxbrit.co.uk/downloads/giblib-1.2.4.tar.gz'
homepage 'http://freshmeat.net/projects/giblib'
md5 'c810ef5389baf24882a1caca2954385e'
depends_on 'imlib2' => :build
def install
system "./configure", "--prefix=#{prefix}"
system "make install"
end
end