mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-01-09 15:37:56 -05:00
* aspell 0.60.8 -> 0.60.8.1 * axel 2.17.6 -> 2.17.14 * chafa cf15d59 -> 1.14.2 * chicken 5.1.0 -> 5.4.0 * colord 1.4.5 -> 1.4.7
26 lines
886 B
Ruby
26 lines
886 B
Ruby
require 'buildsystems/autotools'
|
|
|
|
class Chafa < Autotools
|
|
description 'Image-to-text converter supporting a wide range of symbols and palettes, transparency, animations, etc.'
|
|
homepage 'https://hpjansson.org/chafa/'
|
|
version '1.14.2'
|
|
license 'LGPL'
|
|
compatibility 'all'
|
|
source_url 'https://github.com/hpjansson/chafa.git'
|
|
git_hashtag version
|
|
binary_compression 'tar.zst'
|
|
|
|
binary_sha256({
|
|
aarch64: 'c827c889582064fcf7d6a054534e85d16595a6bf28e5e3caefcebf1e38c45706',
|
|
armv7l: 'c827c889582064fcf7d6a054534e85d16595a6bf28e5e3caefcebf1e38c45706',
|
|
i686: '615b1997f5b595ad3a95987e649b5aee68b5abc2a3310c6f215de67d6c26d24d',
|
|
x86_64: '01c0d9a470d3cd3241be22fb6ad7dc23b5a6ea3e1ddf7822786a2db5540be274'
|
|
})
|
|
|
|
depends_on 'glib'
|
|
depends_on 'libxslt'
|
|
|
|
# The tools depends on freetype, which drops i686 compatibility.
|
|
configure_options '--without-tools'
|
|
end
|