mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-05-01 03:00:26 -04:00
* Add unbuilt firefox to updater-firefox-147.0.2 * Adjust firefox deps. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Adjust firefox deps. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Change all sommelier deps to => :logical deps Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Fix circular dependencies of docbook_xml and docbook_xml412. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Cleanup docbook circular deps. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Fix elogind, ffmpeg circular deps. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Cleanup more circular deps. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Mark packages from successful builds as automatically buildable. * updater-firefox-147.0.2: Package File Update Run on linux/386 container. * Add filelists and updated packages. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Fix gstreamer deps. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Handle missing dlist, update pipewire filelist Signed-off-by: Satadru Pramanik <satadru@gmail.com> * lint Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Add rsu_client filelist Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Suggested changes. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Adjust elogind deps. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Adjust docbook heredocs. Signed-off-by: Satadru Pramanik <satadru@gmail.com> --------- Signed-off-by: Satadru Pramanik <satadru@gmail.com> Co-authored-by: github-merge-queue <github-merge-queue@users.noreply.github.com> Co-authored-by: satmandu <satmandu@users.noreply.github.com> Co-authored-by: chromebrew-actions[bot] <chromebrew-actions[bot]@users.noreply.github.com>
36 lines
1.1 KiB
Ruby
36 lines
1.1 KiB
Ruby
require 'buildsystems/autotools'
|
|
|
|
class Smallbasic < Autotools
|
|
description 'SmallBASIC is a fast and easy to learn BASIC language interpreter'
|
|
homepage 'https://smallbasic.github.io/'
|
|
version '12.28'
|
|
license 'GPLv3'
|
|
compatibility 'aarch64 armv7l x86_64'
|
|
source_url 'https://github.com/smallbasic/SmallBASIC.git'
|
|
git_hashtag "v#{version}"
|
|
binary_compression 'tar.zst'
|
|
|
|
binary_sha256({
|
|
aarch64: '9f78c101263cce6a5e9acf170a58b857bf3cf458698a8c82100e8ab306f11bc7',
|
|
armv7l: '9f78c101263cce6a5e9acf170a58b857bf3cf458698a8c82100e8ab306f11bc7',
|
|
x86_64: '2de52d233212ee589d64d72d6bd103378cec2ae9a3e03915b46f353b5ab7f48d'
|
|
})
|
|
|
|
depends_on 'fontconfig' # R
|
|
depends_on 'freetype' # R
|
|
depends_on 'gcc_lib' # R
|
|
depends_on 'glibc' # R
|
|
depends_on 'harfbuzz' # R
|
|
depends_on 'msttcorefonts' # L
|
|
depends_on 'pcre' # R
|
|
depends_on 'sdl2' => :build
|
|
depends_on 'sommelier' => :logical
|
|
depends_on 'xxd_standalone' => :build
|
|
|
|
autotools_configure_options '--enable-sdl'
|
|
|
|
def self.postinstall
|
|
puts "\nType 'sbasicg' to get started.\n".lightblue
|
|
end
|
|
end
|