mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-01-10 07:57:59 -05:00
* Rename IgnoredPatterns to AllowedPatterns. * Exclude docopt.rb (not our code) from Rubocop * Disable Style/RedundantReturn * Disable Style/MutableConstant * Disable Style/NumericLiterals * Set Layout/IndentationStyle to spaces * Temporarily disable various cops. * Add Rubocop CI via Octocop * Lint tree with rubocop -A -c .rubocop.yml Co-authored-by: Satadru Pramanik <satadru@gmail.com>
40 lines
1.3 KiB
Ruby
40 lines
1.3 KiB
Ruby
require 'package'
|
|
|
|
class Libmfx < Package
|
|
description 'Intel Media SDK dispatcher library'
|
|
homepage 'https://github.com/lu-zero/mfx_dispatch/'
|
|
version '1.35.1'
|
|
license 'BSD'
|
|
compatibility 'i686'
|
|
source_url 'https://github.com/lu-zero/mfx_dispatch/archive/1.35.1.tar.gz'
|
|
source_sha256 '673636da98a4fd5c3e3dc5267da5429e986f53089ed6c33cdca5751f56d9416b'
|
|
|
|
binary_url({
|
|
i686: 'https://gitlab.com/api/v4/projects/26210301/packages/generic/libmfx/1.35.1_i686/libmfx-1.35.1-chromeos-i686.tar.zst'
|
|
})
|
|
binary_sha256({
|
|
i686: '3491a2615abbe06c01ad6c6d17721f56415190068a899f6a7195de0ccbaac3ef'
|
|
})
|
|
|
|
depends_on 'libva'
|
|
|
|
def self.build
|
|
system 'autoreconf -i'
|
|
system "env CFLAGS='-pipe -fno-stack-protector -U_FORTIFY_SOURCE -flto=auto' \
|
|
CXXFLAGS='-pipe -fno-stack-protector -U_FORTIFY_SOURCE -flto=auto' \
|
|
LDFLAGS='-fno-stack-protector -U_FORTIFY_SOURCE -flto=auto' \
|
|
./configure #{CREW_OPTIONS} \
|
|
--enable-shared='yes' \
|
|
--with-libva_drm='yes' \
|
|
--with-libva_x11='yes' \
|
|
--with-pic"
|
|
system 'make'
|
|
end
|
|
|
|
def self.install
|
|
system "make DESTDIR=#{CREW_DEST_DIR} install"
|
|
# fix version in pkg-config file"
|
|
system "sed -i /Version:/s/[0-9]\.[0-9]\{2\}/#{version}/ #{CREW_DEST_LIB_PREFIX}/pkgconfig/libmfx.pc"
|
|
end
|
|
end
|