mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-05-01 03:00:26 -04:00
* Add unbuilt exfatprogs to updater-exfatprogs-1.2.9 * updater-exfatprogs-1.2.9: Build Run on linux/amd64. * updater-exfatprogs-1.2.9: Build Run on linux/arm/v7. * updater-exfatprogs-1.2.9: Build Run on linux/386. * updater-exfatprogs-1.2.9: Package File Update Run on linux/386 container. --------- Co-authored-by: satmandu <satmandu@users.noreply.github.com> Co-authored-by: chromebrew-actions[bot] <chromebrew-actions[bot]@users.noreply.github.com>
32 lines
972 B
Ruby
32 lines
972 B
Ruby
require 'package'
|
|
|
|
class Exfatprogs < Package
|
|
description 'exFAT filesystem userspace utilities for the Linux Kernel exfat driver.'
|
|
homepage 'https://github.com/exfatprogs/exfatprogs'
|
|
version '1.2.9'
|
|
license 'GPL-2'
|
|
compatibility 'all'
|
|
source_url 'https://github.com/exfatprogs/exfatprogs.git'
|
|
git_hashtag version
|
|
binary_compression 'tar.zst'
|
|
|
|
binary_sha256({
|
|
aarch64: 'f707e6f1519aa495d08f059132215e44709f3d8fd8527bae556dc618c00cf477',
|
|
armv7l: 'f707e6f1519aa495d08f059132215e44709f3d8fd8527bae556dc618c00cf477',
|
|
i686: 'f7b3a9426b7a9f5d2bf8559c9b0e4602d5c5b0696882b38a3d09451ed5f04de9',
|
|
x86_64: '959e41a09ec92ae430c5c0c5485eb5f56cd25d1eab51c867d7d171ee7575d3b9'
|
|
})
|
|
|
|
depends_on 'glibc' # R
|
|
|
|
def self.build
|
|
system '[ -x configure ] || NOCONFIGURE=1 ./autogen.sh'
|
|
system "./configure #{CREW_CONFIGURE_OPTIONS}"
|
|
system 'make'
|
|
end
|
|
|
|
def self.install
|
|
system 'make', "DESTDIR=#{CREW_DEST_DIR}", 'install'
|
|
end
|
|
end
|