Links 2.28 => 2.30 (#10218)

This commit is contained in:
Ed Reel
2024-07-28 19:23:27 -05:00
committed by GitHub
parent 204aa911b6
commit dffd1db7cd
4 changed files with 19 additions and 26 deletions

View File

@@ -1,2 +1,2 @@
/usr/local/bin/links
/usr/local/share/man/man1/links.1.gz
/usr/local/share/man/man1/links.1.zst

View File

@@ -1,2 +1,2 @@
/usr/local/bin/links
/usr/local/share/man/man1/links.1.gz
/usr/local/share/man/man1/links.1.zst

View File

@@ -1,2 +1,2 @@
/usr/local/bin/links
/usr/local/share/man/man1/links.1.gz
/usr/local/share/man/man1/links.1.zst

View File

@@ -1,41 +1,34 @@
require 'package'
require 'buildsystems/autotools'
class Links < Package
class Links < Autotools
description 'Links is a lynx-like text WWW browser with tables and frames.'
homepage 'http://links.twibright.com/'
version '2.28'
version '2.30'
license 'GPL-2'
compatibility 'all'
source_url 'http://links.twibright.com/download/links-2.28.tar.bz2'
source_sha256 '2fd5499b13dee59457c132c167b8495c40deda75389489c6cccb683193f454b4'
source_url "http://links.twibright.com/download/links-#{version}.tar.bz2"
source_sha256 'c4631c6b5a11527cdc3cb7872fc23b7f2b25c2b021d596be410dadb40315f166'
binary_compression 'tar.zst'
binary_sha256({
aarch64: 'afa89a2b2fabf27e2fdfa83ff6f528b66cd52a7effc69202c6e8c5a805fec617',
armv7l: 'afa89a2b2fabf27e2fdfa83ff6f528b66cd52a7effc69202c6e8c5a805fec617',
i686: '2513d64a717eff502b96c9e5be41b4df4e78d44fe847d886337a9fb720f267e9',
x86_64: '0640a3a0c2e2b35a1745542b070f8ed859c21821721a93d78f5597e74a8ba9b6'
aarch64: '7356e73ee8bf693ae549f23cf6062c4a2ae226eb4a5ac1fdd5ed472cb340452c',
armv7l: '7356e73ee8bf693ae549f23cf6062c4a2ae226eb4a5ac1fdd5ed472cb340452c',
i686: '565c3a9c6646904b37a50e5b834b3b666d225be3e8924e0f0dd08afcdbf489e6',
x86_64: 'b908c2dad31b45cff19e0fd030188ee0afa96f1734d5d745fd8de7f0f8ad871a'
})
depends_on 'brotli' # R
depends_on 'bzip2'
depends_on 'bzip2' # R
depends_on 'glibc' # R
depends_on 'libbsd' # R
depends_on 'libjpeg_turbo'
depends_on 'libpng'
depends_on 'lzma'
depends_on 'libjpeg_turbo' # R
depends_on 'libpng' # R
depends_on 'lzlib' # R
depends_on 'lzma' # R
depends_on 'openssl'
depends_on 'xzutils' # R
depends_on 'zlib'
depends_on 'zlib' # R
depends_on 'zstd' # R
def self.build
system '[ -x configure ] || NOCONFIGURE=1 ./autogen.sh'
system "./configure #{CREW_OPTIONS}"
system 'make'
end
def self.install
system 'make', "DESTDIR=#{CREW_DEST_DIR}", 'install'
end
run_tests
end