Rename glib2.rb to glib.rb

This commit is contained in:
Ed Reel
2017-01-27 21:18:45 -06:00
parent 6ed6fe1da7
commit 37dbfbb4bc

18
packages/glib.rb Normal file
View File

@@ -0,0 +1,18 @@
require 'package'
class Glib < Package
version '2.0.7'
source_url 'https://ftp.gnome.org/pub/gnome/sources/glib/2.0/glib-2.0.7.tar.gz'
source_sha1 '02401937a5e06d8797d966b06d9a191425cbec6f'
depends_on 'libffi'
def self.build
system "./configure"
system "make"
end
def self.install
system "make", "DESTDIR=#{CREW_DEST_DIR}", "install"
end
end