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>
32 lines
1.1 KiB
Ruby
32 lines
1.1 KiB
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.18.1'
|
|
license 'LGPL'
|
|
compatibility 'aarch64 armv7l x86_64'
|
|
source_url 'https://github.com/hpjansson/chafa.git'
|
|
git_hashtag version
|
|
binary_compression 'tar.zst'
|
|
|
|
binary_sha256({
|
|
aarch64: 'f6d9dc18294c7c2a00d888cf4eedf1c3a415625625c60ef32e50d09f046aacfe',
|
|
armv7l: 'f6d9dc18294c7c2a00d888cf4eedf1c3a415625625c60ef32e50d09f046aacfe',
|
|
x86_64: 'bb460334e3a93e55c323b9d3269558b1c62071291950b2a924e4ef6d5764ec3c'
|
|
})
|
|
|
|
depends_on 'cairo' => :executable
|
|
depends_on 'freetype' => :executable
|
|
depends_on 'gdk_pixbuf' => :executable
|
|
depends_on 'glib' # R
|
|
depends_on 'glibc' # R
|
|
depends_on 'harfbuzz' => :executable
|
|
depends_on 'libjpeg_turbo' => :executable
|
|
depends_on 'librsvg' => :executable
|
|
depends_on 'libtiff' => :executable
|
|
depends_on 'libxslt' => :build
|
|
|
|
autotools_configure_options '--enable-gtk-doc'
|
|
end
|