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

27 lines
681 B
Ruby

require 'package'
class Libass < Package
description 'A portable subtitle renderer for the ASS/SSA (Advanced Substation Alpha/Substation Alpha) subtitle format.'
homepage 'https://github.com/libass/libass'
version '0.13.6'
source_url 'https://github.com/libass/libass/archive/0.13.6.tar.gz'
source_sha1 '10fc35f8aba2a4a37aaed482a4184d144defb3d8'
depends_on 'automake'
depends_on 'autoconf'
depends_on 'freetype'
depends_on 'fribidi'
depends_on 'fontconfig'
def self.build
system "./autogen.sh"
system "autoconf"
system "./configure"
system "make"
end
def self.install
system "make", "DESTDIR=#{CREW_DEST_DIR}", "install"
end
end