2022-03-20 13:19:37 +01:00
|
|
|
#!/usr/bin/bash
|
|
|
|
# JOBoRun : Jwm OpenBox Obarun RUNit
|
2022-04-16 13:41:56 +02:00
|
|
|
# Maintainer : Joe Bo Run <joborun@disroot.org>
|
2022-03-20 13:19:37 +01:00
|
|
|
# PkgSource : url="https://gittea.disroot.org/joborun-pkg/jobcore/$pkgname"
|
2022-04-16 13:41:56 +02:00
|
|
|
# Website : https://pozol.eu
|
2022-03-20 13:19:37 +01:00
|
|
|
#-----------------------------------------| DESCRIPTION |---------------------------------------
|
|
|
|
|
|
|
|
pkgname=links
|
2022-05-31 21:24:46 +02:00
|
|
|
pkgver=2.27
|
2022-03-20 13:19:37 +01:00
|
|
|
pkgrel=01
|
2022-05-31 21:24:46 +02:00
|
|
|
pkgdesc='A text WWW browser, similar to Lynx - gfx enabled in xlinks'
|
2022-03-20 13:19:37 +01:00
|
|
|
arch=('x86_64')
|
|
|
|
url='http://links.twibright.com/'
|
|
|
|
depends=('brotli' 'libbrotlidec.so' 'bzip2' 'libbz2.so' 'gpm' 'libgpm.so'
|
|
|
|
'libevent' 'openssl' 'pcre' 'xz' 'zstd' 'libzstd.so')
|
|
|
|
makedepends=('libtiff' 'libpng' 'libxt' 'librsvg')
|
|
|
|
optdepends=('libx11: for using xlinks'
|
|
|
|
'libtiff: for using xlinks'
|
|
|
|
'libpng: for using xlinks'
|
|
|
|
'librsvg: for using xlinks')
|
2022-04-16 13:41:56 +02:00
|
|
|
#options=('debug') ## uncomment this line to have the corresponding debug pkg produced
|
2022-03-20 13:19:37 +01:00
|
|
|
source=("http://links.twibright.com/download/${pkgname}-${pkgver}.tar.bz2"
|
|
|
|
'links.desktop')
|
|
|
|
|
|
|
|
configure_options=(
|
|
|
|
--prefix=/usr
|
|
|
|
--mandir=/usr/share/man
|
|
|
|
--disable-javascript
|
|
|
|
)
|
|
|
|
|
|
|
|
prepare() {
|
|
|
|
cd ${pkgname}-${pkgver}
|
|
|
|
sed -i "/ac_cpp=/s/\$CPPFLAGS/\$CPPFLAGS -O2/" configure
|
|
|
|
}
|
|
|
|
|
|
|
|
build() {
|
|
|
|
cd ${pkgname}-${pkgver}
|
|
|
|
(cd intl; ./gen-intl; ./synclang)
|
|
|
|
./configure \
|
|
|
|
"${configure_options[@]}" \
|
|
|
|
--enable-graphics \
|
|
|
|
--with-x \
|
|
|
|
--with-fb
|
|
|
|
make
|
|
|
|
mv links xlinks
|
|
|
|
|
|
|
|
./configure \
|
|
|
|
"${configure_options[@]}" \
|
|
|
|
--disable-graphics \
|
|
|
|
--without-x \
|
|
|
|
--without-fb
|
|
|
|
make
|
|
|
|
}
|
|
|
|
|
|
|
|
package() {
|
|
|
|
cd ${pkgname}-${pkgver}
|
|
|
|
make DESTDIR="${pkgdir}" install
|
|
|
|
|
|
|
|
install -D -m0755 xlinks "${pkgdir}/usr/bin/xlinks"
|
|
|
|
ln -s links.1.gz "${pkgdir}/usr/share/man/man1/xlinks.1.gz"
|
|
|
|
|
|
|
|
install -D -m0644 "${srcdir}/links.desktop" "${pkgdir}/usr/share/applications/links.desktop"
|
|
|
|
install -d "${pkgdir}/usr/share/pixmaps"
|
|
|
|
install -m0644 links_16x16_1.xpm links_16x16_2.xpm links_32x32.xpm links-48x48.xpm "${pkgdir}/usr/share/pixmaps/"
|
|
|
|
|
|
|
|
install -d "${pkgdir}/usr/share/doc/links/calibration"
|
|
|
|
install -m0644 doc/links_cal/* "${pkgdir}/usr/share/doc/links/calibration/"
|
|
|
|
}
|
|
|
|
|
|
|
|
#---- license gpg-key sha256sums ----
|
|
|
|
|
|
|
|
license=('GPL')
|
|
|
|
|
2022-05-31 21:24:46 +02:00
|
|
|
sha256sums=(d8ddcbfcede7cdde80abeb0a236358f57fa6beb2bcf92e109624e9b896f9ebb4 # links-2.27.tar.bz2
|
2022-03-20 13:19:37 +01:00
|
|
|
f96bf2638e9c309bfdb857bd62a732b980231b3a683cd585ec872b249c2c1b19) # links.desktop
|