mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-01-09 07:28:01 -05:00
* Rename CREW_OPTIONS to CREW_CONFIGURE_OPTIONS * Rename build_extras and install_extras to configure_build_extras and configure_install_extras
33 lines
1.1 KiB
Ruby
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
|