mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-24 10:32:13 +08:00
34 lines
861 B
Bash
34 lines
861 B
Bash
#
|
|
# Apps packages for the Chakra Project
|
|
#
|
|
# Maintainer: Neophytos Kolokotronis <tetris4@gmail.com>
|
|
# Contributor: Douglas Soares de Andrade <douglas@archlinux.org>
|
|
# Contributor: Tom Newsom <Jeepster@gmx.co.uk>
|
|
|
|
pkgname=lynx
|
|
pkgver=2.8.7
|
|
pkgrel=2
|
|
pkgdesc="A text browser for the World Wide Web"
|
|
url="http://lynx.isc.org/"
|
|
arch=(i686 x86_64)
|
|
license=('GPL')
|
|
depends=('ncurses' 'openssl')
|
|
source=(http://lynx.isc.org/release/${pkgname}${pkgver}.tar.gz)
|
|
url="http://lynx.isc.org"
|
|
backup=('etc/lynx.cfg')
|
|
md5sums=('e36d70f3f09b2d502055ca67f09e363c')
|
|
screenshot=('http://upload.wikimedia.org/wikipedia/commons/d/d5/Lynx-wikipedia.png')
|
|
|
|
build() {
|
|
cd ${srcdir}/${pkgname}2-8-7
|
|
./configure --prefix=/usr --sysconfdir=/etc --with-ssl --enable-nls \
|
|
--mandir=/usr/share/man
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd ${srcdir}/${pkgname}2-8-7
|
|
make DESTDIR=$pkgdir install
|
|
}
|
|
|