2012-06-05 06:11:38 +08:00
|
|
|
pkgname=links
|
2018-05-14 01:38:39 +08:00
|
|
|
pkgver=2.16
|
2015-01-03 14:16:41 +08:00
|
|
|
pkgrel=1
|
2012-06-05 06:11:38 +08:00
|
|
|
pkgdesc="A text WWW browser, similar to Lynx"
|
2013-12-12 01:27:40 +08:00
|
|
|
arch=('x86_64')
|
2012-06-05 06:11:38 +08:00
|
|
|
url="http://links.twibright.com/"
|
|
|
|
license=('GPL')
|
2015-07-15 20:51:06 +08:00
|
|
|
depends=('bzip2' 'libjpeg' 'libpng' 'libtiff' 'libx11' 'librsvg' 'libevent' 'xz' 'zlib' 'openssl' 'gpm')
|
2013-12-12 01:27:40 +08:00
|
|
|
screenshot='http://links.twibright.com/shots/shot5.jpg'
|
2018-05-14 01:38:39 +08:00
|
|
|
source=(http://links.twibright.com/download/$pkgname-$pkgver.tar.gz
|
|
|
|
links.desktop)
|
|
|
|
sha1sums=('a1a973fdaa5cf29bf4525e40defb8fa5fe7c9e4f'
|
2012-06-05 06:11:38 +08:00
|
|
|
'f600e27c2a71184444f7dd07a10230aa44463a02')
|
2015-07-15 20:51:06 +08:00
|
|
|
|
2015-01-03 14:16:41 +08:00
|
|
|
prepare() {
|
2018-05-14 01:38:39 +08:00
|
|
|
cd $pkgname-$pkgver
|
2015-01-03 14:16:41 +08:00
|
|
|
sed -i "/ac_cpp=/s/\$CPPFLAGS/\$CPPFLAGS -O2/" configure
|
|
|
|
}
|
|
|
|
|
2012-06-05 06:11:38 +08:00
|
|
|
build() {
|
2018-05-14 01:38:39 +08:00
|
|
|
cd $pkgname-$pkgver
|
2012-06-05 06:11:38 +08:00
|
|
|
(cd intl; ./gen-intl; ./synclang)
|
2013-12-12 01:27:40 +08:00
|
|
|
./configure --prefix=/usr \
|
|
|
|
--mandir=/usr/share/man \
|
|
|
|
--enable-javascript \
|
|
|
|
--enable-graphics \
|
2015-07-15 20:51:06 +08:00
|
|
|
--with-x \
|
|
|
|
--with-fb
|
2012-06-05 06:11:38 +08:00
|
|
|
make
|
|
|
|
mv links xlinks
|
|
|
|
|
2013-12-12 01:27:40 +08:00
|
|
|
./configure --prefix=/usr \
|
|
|
|
--mandir=/usr/share/man \
|
|
|
|
--enable-javascript \
|
|
|
|
--disable-graphics \
|
|
|
|
--without-x \
|
|
|
|
--without-fb
|
2012-06-05 06:11:38 +08:00
|
|
|
make
|
|
|
|
}
|
|
|
|
|
|
|
|
package() {
|
2018-05-14 01:38:39 +08:00
|
|
|
cd $pkgname-$pkgver
|
|
|
|
make DESTDIR=$pkgdir install
|
2012-06-05 06:11:38 +08:00
|
|
|
|
2018-05-14 01:38:39 +08:00
|
|
|
install -m755 xlinks $pkgdir/usr/bin/xlinks
|
|
|
|
ln -s links.1.gz $pkgdir/usr/share/man/man1/xlinks.1.gz
|
2012-06-05 06:11:38 +08:00
|
|
|
|
2018-05-14 01:38:39 +08:00
|
|
|
install -D -m644 ../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/
|
2012-06-05 06:11:38 +08:00
|
|
|
|
2018-05-14 01:38:39 +08:00
|
|
|
install -d $pkgdir/usr/share/doc/links/calibration
|
|
|
|
install -m644 doc/links_cal/* $pkgdir/usr/share/doc/links/calibration/
|
2012-06-05 06:11:38 +08:00
|
|
|
}
|