Files
chromebrew/packages/l_smash.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

33 lines
1.1 KiB
Ruby

require 'package'
class L_smash < Package
description 'MP4 muxer and other tools'
homepage 'https://github.com/l-smash/l-smash'
version '2.14.5'
license 'ISC'
compatibility 'all'
source_url "https://github.com/l-smash/l-smash/archive/v#{version}.tar.gz"
source_sha256 'e6f7c31de684f4b89ee27e5cd6262bf96f2a5b117ba938d2d606cf6220f05935'
binary_compression 'tar.xz'
binary_sha256({
aarch64: '5df042cdee6dc70e3670053f5f83a714865227aa4975fb0e655f0c7287a4066e',
armv7l: '5df042cdee6dc70e3670053f5f83a714865227aa4975fb0e655f0c7287a4066e',
i686: '822763691f4c3ddeb88d1192154cb53e41afbeb6547b3f1fbd78c666febbe9cc',
x86_64: 'e6378ac95e629bbc67ee8aa30fa82b0c857e07b5a3e423cb7bee3dcaf31fef30'
})
def self.build
system '[ -x configure ] || ./autogen.sh'
system "./configure #{CREW_CONFIGURE_OPTIONS.sub(/--mandir=.*/, '')} \
--enable-shared \
--extra-cflags='-pipe -fno-stack-protector -U_FORTIFY_SOURCE -flto=auto' \
--extra-ldflags='-fno-stack-protector -U_FORTIFY_SOURCE -flto=auto'"
system 'make'
end
def self.install
system "make DESTDIR=#{CREW_DEST_DIR} install"
end
end