Files
chromebrew/packages/libbluray.rb

38 lines
1.1 KiB
Ruby

require 'package'
class Libbluray < Package
description 'This library is simply a tool for playback of Blu-ray movies.'
homepage 'https://www.videolan.org/developers/libbluray.html'
version '1.3.0'
compatibility 'aarch64 armv7l x86_64'
license 'LGPL-2.1'
source_url 'https://get.videolan.org/libbluray/1.3.0/libbluray-1.3.0.tar.bz2'
source_sha256 'e2dbaf99e84e0a9725f4985bcb85d41e52c2261cc651d8884b1b790b5ef016f9'
binary_compression 'tpxz'
binary_sha256({
aarch64: 'bf82630d544040492dd6d8d9f835ef448c6cce5752a50958b564bc17517fec60',
armv7l: 'bf82630d544040492dd6d8d9f835ef448c6cce5752a50958b564bc17517fec60',
x86_64: '06216dc7ac94c9cc1d4e86b67a8502e1550a0daf66865b24593c578d0e38435a'
})
depends_on 'libxml2'
depends_on 'freetype'
depends_on 'fontconfig'
def self.build
system "#{CREW_ENV_OPTIONS} ./configure #{CREW_CONFIGURE_OPTIONS} \
--enable-optimizations \
--disable-bdjava-jar"
system 'make'
end
def self.install
system 'make', "DESTDIR=#{CREW_DEST_DIR}", 'install'
end
def self.check
system 'make', 'check'
end
end