Files
chromebrew/packages/libogg.rb
2017-06-07 21:06:04 -05:00

19 lines
508 B
Ruby

require 'package'
class Libogg < Package
description 'Ogg is a multimedia container format, and the native file and stream format for the Xiph.org multimedia codecs.'
homepage 'https://xiph.org/ogg/'
version '1.3.1'
source_url 'http://downloads.xiph.org/releases/ogg/libogg-1.3.1.tar.xz'
source_sha1 'a4242415a7a9fd71f3092af9ff0b9fa630e4d7bd'
def self.build
system "./configure"
system "make"
end
def self.install
system "make", "DESTDIR=#{CREW_DEST_DIR}", "install"
end
end