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>
30 lines
1.0 KiB
Ruby
30 lines
1.0 KiB
Ruby
require 'buildsystems/autotools'
|
|
|
|
class A2ps < Autotools
|
|
description 'GNU a2ps is an Any to PostScript filter.'
|
|
homepage 'https://www.gnu.org/software/a2ps/'
|
|
version '4.15.6'
|
|
license 'GPL-3'
|
|
# Builds are currently broken on i686: https://savannah.gnu.org/bugs/?65903
|
|
compatibility 'aarch64 armv7l x86_64'
|
|
# Bootstrapping from git fails: https://savannah.gnu.org/bugs/index.php?65830
|
|
source_url 'https://ftp.gnu.org/gnu/a2ps/a2ps-4.15.6.tar.gz'
|
|
source_sha256 '87ff9d801cb11969181d5b8cf8b65e65e5b24bb0c76a1b825e8098f2906fbdf4'
|
|
binary_compression 'tar.zst'
|
|
|
|
binary_sha256({
|
|
aarch64: 'ebecfeff108d16f671271dadcb423d43f5342c2a19fd705ff18e38673de86d32',
|
|
armv7l: 'ebecfeff108d16f671271dadcb423d43f5342c2a19fd705ff18e38673de86d32',
|
|
x86_64: '1e7a0c86ad72bbddcbcb85e01d3d848109ddc9e5680004206a2fc5428d0e261c'
|
|
})
|
|
|
|
depends_on 'bdwgc'
|
|
depends_on 'bdwgc' => :executable
|
|
depends_on 'glibc' => :executable
|
|
depends_on 'libpaper'
|
|
depends_on 'libpaper' => :executable
|
|
depends_on 'py3_pspdfutils'
|
|
|
|
run_tests
|
|
end
|