New formula libgsf
Libgsf is a simple i/o library that can read and write common file types and handle structured formats that provide file-system-in-a-file semantics.
This commit is contained in:
parent
a679195dcf
commit
3ff702e513
1 changed files with 20 additions and 0 deletions
20
Formula/libgsf.rb
Normal file
20
Formula/libgsf.rb
Normal file
|
@ -0,0 +1,20 @@
|
|||
require 'formula'
|
||||
|
||||
class Libgsf <Formula
|
||||
url 'http://ftp.acc.umu.se/pub/GNOME/sources/libgsf/1.14/libgsf-1.14.16.tar.bz2'
|
||||
homepage 'http://directory.fsf.org/project/libgsf/'
|
||||
md5 '8478d83fda0b6e57f36550c11a693ee1'
|
||||
|
||||
depends_on 'gettext'
|
||||
|
||||
def install
|
||||
configure_args = [
|
||||
"--prefix=#{prefix}",
|
||||
"--disable-debug",
|
||||
"--disable-dependency-tracking",
|
||||
]
|
||||
|
||||
system "./configure", *configure_args
|
||||
system "make install"
|
||||
end
|
||||
end
|
Loading…
Reference in a new issue