mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-01-07 22:54:11 -05:00
* Add unbuilt gimp to updater-gimp-3.2.0 * Adjust version. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Update gimp deps, add lensfun. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Add gegl build. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Rebuild babl with vapi. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Rebuild gegl with vapi. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Add suitesparse build, reenable vala in gimp build. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Update gexiv2 => 0.14.6 from the stable tag. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Cleanup gimp package. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Rebuild gegl. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Add x86_64 binaries. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Add arm binaries built with GCC 14. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * updater-gimp-3.2.0: Package File Update Run on linux/amd64 container. * updater-gimp-3.2.0: Package File Update Run on linux/arm/v7 container. * Add fallback if gitlab package id can not be identified. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Document reason for fallback. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Fix py3_twine, py3_cfgv Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Add verbose pkg message to tools/build_updated_packages.rb Signed-off-by: Satadru Pramanik <satadru@gmail.com> --------- Signed-off-by: Satadru Pramanik <satadru@gmail.com> Co-authored-by: satmandu <satmandu@users.noreply.github.com> Co-authored-by: Satadru Pramanik <satadru@gmail.com> Co-authored-by: chromebrew-actions[bot] <chromebrew-actions[bot]@users.noreply.github.com>
38 lines
1.2 KiB
Ruby
38 lines
1.2 KiB
Ruby
# Does not build with GCC 15
|
|
require 'buildsystems/autotools'
|
|
|
|
class W3m < Autotools
|
|
description 'w3m is a text-based browser, pager and HTML typesetter'
|
|
homepage 'https://w3m.sourceforge.net/'
|
|
version '0.5.3+git20230121'
|
|
license 'MIT'
|
|
compatibility 'aarch64 armv7l x86_64'
|
|
source_url 'https://github.com/tats/w3m.git'
|
|
git_hashtag "v#{version}"
|
|
binary_compression 'tar.zst'
|
|
|
|
binary_sha256({
|
|
aarch64: '26d2ec1ac94fb70d22fe9ad1046c518eb01ba34049d7768f7ade530fa6fdfc9a',
|
|
armv7l: '26d2ec1ac94fb70d22fe9ad1046c518eb01ba34049d7768f7ade530fa6fdfc9a',
|
|
x86_64: '8158b705233aded5ed349fe830f17a6d1eaf128632c8e609b06ce14bb05a16a7'
|
|
})
|
|
|
|
depends_on 'bdwgc' # R
|
|
depends_on 'gdk_pixbuf'
|
|
depends_on 'glibc' # R
|
|
depends_on 'gpm' # R
|
|
depends_on 'imlib2' # R
|
|
depends_on 'libbsd' # R
|
|
depends_on 'libx11' # R
|
|
depends_on 'mailutils' => :build
|
|
depends_on 'ncurses' # R
|
|
depends_on 'openssl' # R
|
|
depends_on 'zlib' # R
|
|
|
|
autotools_configure_options "--with-imagelib='gdk-pixbuf-2.0 imlib2' \
|
|
--with-editor=$(which vi) \
|
|
--with-mailer=$(which mail) \
|
|
--with-ssl=#{CREW_PREFIX}/include/openssl \
|
|
--with-termlib='terminfo mytinfo termcap tinfo ncurses curses'"
|
|
end
|