mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-23 18:14:51 +08:00
moving links from platform to apps, updated as well
This commit is contained in:
parent
9bd4820e0c
commit
4a9c0fbb51
50
links/PKGBUILD
Normal file
50
links/PKGBUILD
Normal file
@ -0,0 +1,50 @@
|
||||
#
|
||||
# Apps packages for the Chakra Project
|
||||
#
|
||||
# Maintainer: Neophytos Kolokotronis <tetris4@gmail.com>
|
||||
# Contributor: Eric Bélanger <eric@archlinux.org>
|
||||
|
||||
pkgname=links
|
||||
pkgver=2.6
|
||||
pkgrel=1
|
||||
pkgdesc="A text WWW browser, similar to Lynx"
|
||||
arch=('i686' 'x86_64')
|
||||
url="http://links.twibright.com/"
|
||||
license=('GPL')
|
||||
depends=('bzip2' 'xz' 'zlib' 'openssl' 'gpm')
|
||||
makedepends=('libtiff' 'libpng' 'libxt')
|
||||
optdepends=('libx11: for using xlinks' 'libtiff: for using xlinks' 'libpng: for using xlinks')
|
||||
provides=('links-g')
|
||||
conflicts=('links-g')
|
||||
replaces=('links-g')
|
||||
source=(http://links.twibright.com/download/${pkgname}-${pkgver}.tar.bz2 links.desktop)
|
||||
sha1sums=('228bd726c176ea44d35fa12cafd97aa83214d9dc'
|
||||
'f600e27c2a71184444f7dd07a10230aa44463a02')
|
||||
|
||||
build() {
|
||||
cd "${srcdir}/${pkgname}-${pkgver}"
|
||||
(cd intl; ./gen-intl; ./synclang)
|
||||
./configure --prefix=/usr --mandir=/usr/share/man --enable-javascript \
|
||||
--enable-graphics --with-x --with-fb
|
||||
make
|
||||
mv links xlinks
|
||||
|
||||
./configure --prefix=/usr --mandir=/usr/share/man --enable-javascript \
|
||||
--disable-graphics --without-x --without-fb
|
||||
make
|
||||
}
|
||||
|
||||
package() {
|
||||
cd "${srcdir}/${pkgname}-${pkgver}"
|
||||
make DESTDIR="${pkgdir}" install
|
||||
|
||||
install -m755 xlinks "${pkgdir}/usr/bin/xlinks"
|
||||
ln -s links.1.gz "${pkgdir}/usr/share/man/man1/xlinks.1.gz"
|
||||
|
||||
install -D -m644 "${srcdir}/links.desktop" "${pkgdir}/usr/share/applications/links.desktop"
|
||||
install -d "${pkgdir}/usr/share/pixmaps"
|
||||
install -m644 links_16x16_1.xpm links_16x16_2.xpm links_32x32.xpm "${pkgdir}/usr/share/pixmaps/"
|
||||
|
||||
install -d "${pkgdir}/usr/share/doc/links/calibration"
|
||||
install -m644 doc/links_cal/* "${pkgdir}/usr/share/doc/links/calibration/"
|
||||
}
|
7
links/links.desktop
Normal file
7
links/links.desktop
Normal file
@ -0,0 +1,7 @@
|
||||
[Desktop Entry]
|
||||
Name=Links
|
||||
Exec=xlinks -g
|
||||
Icon=links_32x32.xpm
|
||||
Type=Application
|
||||
Terminal=false
|
||||
Categories=Network;WebBrowser;
|
Loading…
Reference in New Issue
Block a user