mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-05-01 03:00:26 -04:00
* gparted -> 1.8.1 in updater-gparted-1.8.1 * updater-gparted-1.8.1: Package File Update Run on linux/amd64 container. * updater-gparted-1.8.1: Package File Update Run on linux/arm/v7 container. * updater-gparted-1.8.1: Package File Update Run on linux/amd64 container. * Cleanup gparted. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Update dependencies to use :executable instead of :executable_only 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: chromebrew-actions[bot] <chromebrew-actions[bot]@users.noreply.github.com> Co-authored-by: satmandu <satmandu@users.noreply.github.com> Co-authored-by: Satadru Pramanik <satadru@gmail.com>
36 lines
1.3 KiB
Ruby
36 lines
1.3 KiB
Ruby
require 'buildsystems/autotools'
|
|
|
|
class Fossil < Autotools
|
|
description 'Fossil is a simple, high-reliability, distributed software configuration management system'
|
|
homepage 'https://fossil-scm.org/home/doc/trunk/www/index.wiki'
|
|
version '2.28'
|
|
license 'BSD-2'
|
|
compatibility 'all'
|
|
source_url 'https://github.com/drhsqlite/fossil-mirror.git'
|
|
git_hashtag "version-#{version}"
|
|
binary_compression 'tar.zst'
|
|
|
|
binary_sha256({
|
|
aarch64: '1a0f7180eb3a164dc90872d99e168d233f442ffb34c3eaee35fb0ab637d99ea9',
|
|
armv7l: '1a0f7180eb3a164dc90872d99e168d233f442ffb34c3eaee35fb0ab637d99ea9',
|
|
i686: 'f8ac9ec86f7163eccda5f3092cef384a1c96203c9920a43246f3324fff174574',
|
|
x86_64: '90ff6bc93846c2d7416f86320929898a38d46c356b47fd18d75db3bf8577f411'
|
|
})
|
|
|
|
# Error: system SQLite library omits required build option -DSQLITE_ENABLE_DBSTAT_VTAB
|
|
depends_on 'fuse2'
|
|
depends_on 'fuse2' => :executable
|
|
depends_on 'glibc' => :executable
|
|
depends_on 'openssl' => :executable
|
|
# depends_on 'sqlite'
|
|
depends_on 'tcl' => :build
|
|
depends_on 'zlib' => :executable
|
|
|
|
# Fossil uses autosetup, which behaves enough like autotools that if we only pass certain options,
|
|
# we can still use the rest of the autotools buildsystem.
|
|
|
|
autotools_install_extras do
|
|
FileUtils.install 'fossil.1', "#{CREW_DEST_MAN_PREFIX}/man1/fossil.1", mode: 0o644
|
|
end
|
|
end
|