Files
chromebrew/packages/jp2a.rb
Maximilian Downey Twiss f6dc1d8d4e Derive binary_url in package.rb (#7082)
* Add binary_compression value to each package

* Remove binary_url values and arrays

* Handle packages with empty binary_sha256 arrays (either missing binaries or not compiled by us)
2024-01-25 11:03:31 -05:00

34 lines
1.2 KiB
Ruby

require 'buildsystems/autotools'
class Jp2a < Autotools
description 'jp2a is a simple JPEG/PNG to ASCII converter.'
homepage 'https://github.com/Talinx/jp2a'
version '1.1.1-1'
license 'GPL-2'
compatibility 'all'
source_url 'https://github.com/Talinx/jp2a/releases/download/v1.1.1/jp2a-1.1.1.tar.bz2'
source_sha256 '3b91f26f79eca4e963b1b1ae2473722a706bf642218f20bfe4ade5333aebb106'
binary_compression 'tar.zst'
binary_sha256({
aarch64: '9438a0ebd55061bcb22278bc446bd5b43923afd4bacd0850193dfd5f1886c702',
armv7l: '9438a0ebd55061bcb22278bc446bd5b43923afd4bacd0850193dfd5f1886c702',
i686: 'd577997a33292f4859a6609421b04834a5ec66cf5dd4dcb2977a0a593a954ca8',
x86_64: '43d23d90642210eee4eca270d1760af66320485d1309bb717391d400e3223015'
})
depends_on 'curl' # R
depends_on 'glibc' # R
depends_on 'libjpeg' # R
depends_on 'libpng' # R
depends_on 'ncurses' # R
depends_on 'termcap' # R
pre_configure_options "CFLAGS='-lncurses -ltinfo -I#{CREW_PREFIX}/include/ncurses #{CREW_ENV_OPTIONS_HASH['CFLAGS']}' LDFLAGS='-L#{CREW_LIB_PREFIX} -lncurses -ltinfo #{CREW_ENV_OPTIONS_HASH['LDFLAGS']}'"
configure_options '--enable-curl'
def self.check
system 'make check || true'
end
end