[arch-commits] Commit in links/repos (3 files)

Christian Hesse eworm at archlinux.org
Fri Sep 7 23:29:04 UTC 2018


    Date: Friday, September 7, 2018 @ 23:29:04
  Author: eworm
Revision: 333842

archrelease: copy trunk to testing-x86_64

Added:
  links/repos/testing-x86_64/
  links/repos/testing-x86_64/PKGBUILD
    (from rev 333841, links/trunk/PKGBUILD)
  links/repos/testing-x86_64/links.desktop
    (from rev 333841, links/trunk/links.desktop)

---------------+
 PKGBUILD      |   66 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 links.desktop |    7 +++++
 2 files changed, 73 insertions(+)

Copied: links/repos/testing-x86_64/PKGBUILD (from rev 333841, links/trunk/PKGBUILD)
===================================================================
--- testing-x86_64/PKGBUILD	                        (rev 0)
+++ testing-x86_64/PKGBUILD	2018-09-07 23:29:04 UTC (rev 333842)
@@ -0,0 +1,66 @@
+# $Id$
+# Maintainer: Christian Hesse <mail at eworm.de>
+# Contributor: Eric Bélanger <eric at archlinux.org>
+
+pkgname=links
+pkgver=2.17
+pkgrel=1
+pkgdesc="A text WWW browser, similar to Lynx"
+arch=('x86_64')
+url="http://links.twibright.com/"
+license=('GPL')
+depends=('bzip2' 'gpm' 'libevent' 'pcre' 'xz')
+makedepends=('libtiff' 'libpng' 'libxt' 'librsvg')
+optdepends=('libx11: for using xlinks'
+	    'libtiff: for using xlinks'
+	    'libpng: for using xlinks'
+	    'librsvg: for using xlinks')
+source=("http://links.twibright.com/download/${pkgname}-${pkgver}.tar.bz2"
+        'links.desktop')
+sha256sums=('d8389763784a531acf7f18f93dd0324563bba2f5fa3df203f27d22cefe7a0236'
+            '484571172aa19cf91c4ce9d9528a4ac52e9252d6e741897e7339880aa30dbc88')
+
+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 "${pkgdir}/usr/share/pixmaps/"
+
+  install -d "${pkgdir}/usr/share/doc/links/calibration"
+  install -m0644 doc/links_cal/* "${pkgdir}/usr/share/doc/links/calibration/"
+}

Copied: links/repos/testing-x86_64/links.desktop (from rev 333841, links/trunk/links.desktop)
===================================================================
--- testing-x86_64/links.desktop	                        (rev 0)
+++ testing-x86_64/links.desktop	2018-09-07 23:29:04 UTC (rev 333842)
@@ -0,0 +1,7 @@
+[Desktop Entry]
+Name=Links
+Exec=xlinks -g
+Icon=links_32x32.xpm
+Type=Application
+Terminal=false
+Categories=Network;WebBrowser;



More information about the arch-commits mailing list