mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-01-09 15:37:56 -05:00
* Rename CREW_OPTIONS to CREW_CONFIGURE_OPTIONS * Rename build_extras and install_extras to configure_build_extras and configure_install_extras
38 lines
1.2 KiB
Ruby
38 lines
1.2 KiB
Ruby
# Adapted from Arch Linux squashfuse PKGBUILD at:
|
|
# https://github.com/archlinux/svntogit-packages/raw/packages/squashfuse/trunk/PKGBUILD
|
|
|
|
require 'package'
|
|
|
|
class Squashfuse < Package
|
|
description 'FUSE filesystem to mount squashfs archives'
|
|
homepage 'https://github.com/vasi/squashfuse'
|
|
version '0.1.104'
|
|
license 'custom'
|
|
compatibility 'all'
|
|
source_url 'https://github.com/vasi/squashfuse/releases/download/0.1.104/squashfuse-0.1.104.tar.gz'
|
|
source_sha256 'aa52460559e0d0b1753f6b1af5c68cfb777ca5a13913285e93f4f9b7aa894b3a'
|
|
binary_compression 'tar.xz'
|
|
|
|
binary_sha256({
|
|
aarch64: '83bad067dece48c952a5fd510fdc2f62d4a790d6134f0015eb1c958bb66a4507',
|
|
armv7l: '83bad067dece48c952a5fd510fdc2f62d4a790d6134f0015eb1c958bb66a4507',
|
|
i686: 'afb0d28b2ee43ebc540e6b1d3c4cc56324a3356bd33cea66e47d2ba3797bf5ca',
|
|
x86_64: 'df130e28a509798c98213a139936e6711b7d6d97b2510f3194820cb47e22631d'
|
|
})
|
|
|
|
depends_on 'fuse3'
|
|
depends_on 'lzo'
|
|
|
|
def self.build
|
|
system "env CFLAGS='-pipe -flto=auto' \
|
|
CXXFLAGS='-pipe -flto=auto' \
|
|
LDFLAGS='-flto=auto' \
|
|
./configure #{CREW_CONFIGURE_OPTIONS}"
|
|
system 'make'
|
|
end
|
|
|
|
def self.install
|
|
system "make DESTDIR=#{CREW_DEST_DIR} install"
|
|
end
|
|
end
|