mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-05-01 03:00:26 -04:00
* Update buildsystems, update jq, add jq to core for arm. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Only report build options if they exist. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Fix overeager sed replacement. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * workflow debugging Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Add logging for build errors. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Revert to function in each package file. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Update jq since it needs gcc14 to build. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Add built packages for linux/386 to buildsystems * remove deprecated gfbgraph Signed-off-by: Satadru Pramanik <satadru@gmail.com> * fix git tag for gnome_maps Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Update llvm20 package file. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Update gnome_maps deps. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Abstract out buildsystems_methods reporting. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Keep LIBC_VERSION const from being empty. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Update crew_profile_base and libxml2 Signed-off-by: Satadru Pramanik <satadru@gmail.com> * clarify Signed-off-by: Satadru Pramanik <satadru@gmail.com> * lint Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Update libarchive Signed-off-by: Satadru Pramanik <satadru@gmail.com> * update libavif Signed-off-by: Satadru Pramanik <satadru@gmail.com> * more updates Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Add libxml2 build comment. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Add build comment to libarchive. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Don't warn for missing directory during package removal. Signed-off-by: Satadru Pramanik <satadru@gmail.com> --------- Signed-off-by: Satadru Pramanik <satadru@gmail.com> Co-authored-by: Satadru Pramanik <satadru@gmail.com> Co-authored-by: satmandu <satmandu@users.noreply.github.com>
26 lines
934 B
Ruby
26 lines
934 B
Ruby
require 'buildsystems/autotools'
|
|
|
|
class Bacon < Autotools
|
|
description 'BaCon is a free BASIC to C translator for Unix-based systems.'
|
|
homepage 'https://chiselapp.com/user/bacon/repository/bacon/home'
|
|
version '5.0'
|
|
license 'MIT'
|
|
compatibility 'all'
|
|
source_url "https://www.basic-converter.org/stable/bacon-#{version}.tar.gz"
|
|
source_sha256 '04f76e0792913ee7b4266493d3748813cab59450a06db9fa9eea240c9bae8a6b'
|
|
binary_compression 'tar.zst'
|
|
|
|
binary_sha256({
|
|
aarch64: 'f5db8a5434ecc652329d3d899f50e7acdf99645f66fd6e6749a9aec50445f52c',
|
|
armv7l: 'f5db8a5434ecc652329d3d899f50e7acdf99645f66fd6e6749a9aec50445f52c',
|
|
i686: '201c5b886ba06bad7eb0d770a819a6f71f07a6091137f8fb1cc0d63797d5c970',
|
|
x86_64: 'ddb485cbbc31ec7aa2fd3f4f6faf1fd5353cdf0951a5174bfbf24d2857a96b0c'
|
|
})
|
|
|
|
def self.patch
|
|
system 'sed -i "s,/usr/share,\$\(DATADIR\)," Makefile.in'
|
|
end
|
|
|
|
autotools_configure_options '--disable-gui'
|
|
end
|