mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-01-06 22:24:12 -05:00
39 lines
1.4 KiB
Ruby
39 lines
1.4 KiB
Ruby
# Adapted from Arch Linux libminigbm-git PKGBUILD at:
|
|
# https://aur.archlinux.org/cgit/aur.git/plain/PKGBUILD?h=libminigbm-git
|
|
|
|
require 'package'
|
|
|
|
class Libminigbm < Package
|
|
description 'Generic Buffer Management GBM implementation used in Chromium OS'
|
|
homepage 'https://chromium.googlesource.com/chromiumos/platform/minigbm/'
|
|
git_hashtag '407eb0ebf3ce52fd4b3d79712d1b86d7b021c29b'
|
|
version git_hashtag[0, 7]
|
|
license 'custom'
|
|
compatibility 'aarch64 armv7l x86_64'
|
|
source_url 'https://chromium.googlesource.com/chromiumos/platform/minigbm.git'
|
|
binary_compression 'tar.zst'
|
|
|
|
binary_sha256({
|
|
aarch64: 'a9d6aa263bdf80940c653730e45f969938a91f5a96c96d33fbd48df960b9f2a5',
|
|
armv7l: 'a9d6aa263bdf80940c653730e45f969938a91f5a96c96d33fbd48df960b9f2a5',
|
|
x86_64: '46f7449d05b06c5ce7bfeee667ea611e5f87b75d0033911b7c698b2709de3a1c'
|
|
})
|
|
|
|
depends_on 'libdrm'
|
|
no_env_options
|
|
|
|
def self.patch
|
|
system "sed -i 's,prefix=/usr,prefix=#{CREW_PREFIX},g' gbm.pc"
|
|
system "sed -i 's,libdir=${exec_prefix}/lib,libdir=${exec_prefix}/lib#{CREW_LIB_SUFFIX},g' gbm.pc"
|
|
end
|
|
|
|
def self.build
|
|
system "#{CREW_ENV_OPTIONS.gsub('-ffat-lto-objects', '').gsub('-fuse-ld=gold',
|
|
'')} LIBDIR=#{CREW_LIB_PREFIX} make CC=clang"
|
|
end
|
|
|
|
def self.install
|
|
system "make DESTDIR=#{CREW_DEST_DIR} LIBDIR=#{CREW_LIB_PREFIX} install"
|
|
end
|
|
end
|