mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-01-06 22:24:12 -05:00
* Update buildsystems, update jq, add jq to core for arm. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Only report build options if they exist. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Fix overeager sed replacement. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * workflow debugging Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Add logging for build errors. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Revert to function in each package file. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Update jq since it needs gcc14 to build. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Add built packages for linux/386 to buildsystems * remove deprecated gfbgraph Signed-off-by: Satadru Pramanik <satadru@gmail.com> * fix git tag for gnome_maps Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Update llvm20 package file. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Update gnome_maps deps. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Abstract out buildsystems_methods reporting. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Keep LIBC_VERSION const from being empty. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Update crew_profile_base and libxml2 Signed-off-by: Satadru Pramanik <satadru@gmail.com> * clarify Signed-off-by: Satadru Pramanik <satadru@gmail.com> * lint Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Update libarchive Signed-off-by: Satadru Pramanik <satadru@gmail.com> * update libavif Signed-off-by: Satadru Pramanik <satadru@gmail.com> * more updates Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Add libxml2 build comment. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Add build comment to libarchive. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Don't warn for missing directory during package removal. Signed-off-by: Satadru Pramanik <satadru@gmail.com> --------- Signed-off-by: Satadru Pramanik <satadru@gmail.com> Co-authored-by: Satadru Pramanik <satadru@gmail.com> Co-authored-by: satmandu <satmandu@users.noreply.github.com>
46 lines
1.4 KiB
Ruby
46 lines
1.4 KiB
Ruby
require 'buildsystems/autotools'
|
|
|
|
class Finch < Autotools
|
|
description 'Finch is a chat program which lets you log in to accounts on multiple chat networks simultaneously.'
|
|
homepage 'https://pidgin.im/'
|
|
version '2.14.13'
|
|
license 'GPL-2'
|
|
compatibility 'all'
|
|
source_url "https://downloads.sourceforge.net/project/pidgin/Pidgin/#{version}/pidgin-#{version}.tar.bz2"
|
|
source_sha256 '120049dc8e17e09a2a7d256aff2191ff8491abb840c8c7eb319a161e2df16ba8'
|
|
binary_compression 'tar.zst'
|
|
|
|
binary_sha256({
|
|
aarch64: 'f6b578068862f3bc111bf2cc758d35fd45e27493f51204a3daa53c1dcff8e93d',
|
|
armv7l: 'f6b578068862f3bc111bf2cc758d35fd45e27493f51204a3daa53c1dcff8e93d',
|
|
i686: '04c522351f0b79e0ecc19e8bbde06b6517579ac906015cf44a6d97ca6b973be1',
|
|
x86_64: 'c2d5410cb2c083e636e7af8c8f42288dd36ccc4aea23a24250b56854f04e5278'
|
|
})
|
|
|
|
depends_on 'e2fsprogs' # R
|
|
depends_on 'glib'
|
|
depends_on 'gnutls'
|
|
depends_on 'krb5' # R
|
|
depends_on 'libcyrussasl' # R
|
|
depends_on 'libgnt'
|
|
depends_on 'libtirpc' # R
|
|
depends_on 'libxml2' # R
|
|
depends_on 'ncurses'
|
|
depends_on 'perl'
|
|
depends_on 'tcl'
|
|
|
|
autotools_configure_options "--disable-avahi \
|
|
--disable-dbus \
|
|
--disable-gstreamer \
|
|
--disable-gtkui \
|
|
--disable-idn \
|
|
--disable-meanwhile \
|
|
--disable-nls \
|
|
--disable-tk \
|
|
--disable-vv \
|
|
--enable-consoleui=yes \
|
|
--with-tclconfig=#{CREW_LIB_PREFIX} \
|
|
--with-ncurses-headers=#{CREW_PREFIX}/include/ncursesw \
|
|
--without-x"
|
|
end
|