Files
chromebrew/packages/libfdk_aac.rb
Maximilian Downey Twiss f6b6cab229 Rename autotools constants to fall in line with the rest of crew (#10442)
* Rename CREW_OPTIONS to CREW_CONFIGURE_OPTIONS

* Rename build_extras and install_extras to configure_build_extras and configure_install_extras
2024-09-09 18:21:58 -05:00

36 lines
1.1 KiB
Ruby

require 'package'
class Libfdk_aac < Package
description 'Modified library of Fraunhofer AAC decoder and encoder.'
homepage 'https://sourceforge.net/projects/opencore-amr/'
version '2.0.2'
license 'Apache-2.0'
compatibility 'all'
source_url 'https://downloads.sourceforge.net/project/opencore-amr/fdk-aac/fdk-aac-2.0.2.tar.gz'
source_sha256 'c9e8630cf9d433f3cead74906a1520d2223f89bcd3fa9254861017440b8eb22f'
binary_compression 'tar.zst'
binary_sha256({
aarch64: '38d931831284f8959672a481ea184c047a98a9c69d5e3b4e53cc5bacd35162c2',
armv7l: '38d931831284f8959672a481ea184c047a98a9c69d5e3b4e53cc5bacd35162c2',
i686: 'a144a32f73459e7f6bc56d8d7cef830d969c5ca02653dbabe3a8d95758a781de',
x86_64: '80770ebc52857780cab250aadcf19f8845b86331466a519552820d4e35a0ab44'
})
depends_on 'glibc' # R
def self.build
system 'autoreconf -fiv'
system "./configure #{CREW_CONFIGURE_OPTIONS}"
system 'make'
end
def self.check
system 'make', 'check'
end
def self.install
system 'make', "DESTDIR=#{CREW_DEST_DIR}", 'install'
end
end