mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-01-10 07:57:59 -05:00
* update gnulib_git and babl * icu4c => 73.2 * update boost * rebuild source_highlight * update mold * rebuild cppunit * update libgpgerror * update taglib * update libgcrypt * rebuild librevenge * update gnupg, rebuild yajl, grive * update exempi, rebuild libvisio * update poppler * rebuild eigen libcdr * update gegl * swig rebuild * update tcpflow, ledger * update gdb, rebuild libtorrent * update gimp * rebuild inkscape * rebuild binutils with gdb fallback * gimp rebuild
32 lines
1.3 KiB
Ruby
32 lines
1.3 KiB
Ruby
require 'buildsystems/cmake'
|
|
|
|
class Ledger < CMake
|
|
description 'A double-entry accounting system with a command-line reporting interface'
|
|
homepage 'https://www.ledger-cli.org/'
|
|
version '3.3.2'
|
|
license 'BSD'
|
|
compatibility 'all'
|
|
source_url 'https://github.com/ledger/ledger.git'
|
|
git_hashtag "v#{version}"
|
|
|
|
binary_url({
|
|
aarch64: 'https://gitlab.com/api/v4/projects/26210301/packages/generic/ledger/3.3.2_armv7l/ledger-3.3.2-chromeos-armv7l.tar.zst',
|
|
armv7l: 'https://gitlab.com/api/v4/projects/26210301/packages/generic/ledger/3.3.2_armv7l/ledger-3.3.2-chromeos-armv7l.tar.zst',
|
|
i686: 'https://gitlab.com/api/v4/projects/26210301/packages/generic/ledger/3.3.2_i686/ledger-3.3.2-chromeos-i686.tar.zst',
|
|
x86_64: 'https://gitlab.com/api/v4/projects/26210301/packages/generic/ledger/3.3.2_x86_64/ledger-3.3.2-chromeos-x86_64.tar.zst'
|
|
})
|
|
binary_sha256({
|
|
aarch64: 'a078d15274360b4f03558eca8ac4128536bffa774d3bc0a432802f89369b19c3',
|
|
armv7l: 'a078d15274360b4f03558eca8ac4128536bffa774d3bc0a432802f89369b19c3',
|
|
i686: '8ba30162cc4c1b55a6e47e590bde549b24e7a91dfbdc2f7f04870069897891ce',
|
|
x86_64: 'e15d098bd64cd861eead5b792cf74703dd1a98b0e3adecda13baeb6cc4ef3fe1'
|
|
})
|
|
|
|
depends_on 'boost' # R
|
|
depends_on 'gcc_lib' # R
|
|
depends_on 'glibc' # R
|
|
depends_on 'gmp' # R
|
|
depends_on 'libedit' # R
|
|
depends_on 'mpfr' # R
|
|
end
|