mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-05 09:37:14 +08:00
89f5fdf6ea
- added some makedeps - fixed some pkgs - broken pkgs: 7
25 lines
704 B
Bash
25 lines
704 B
Bash
# $Id: PKGBUILD 75554 2010-04-01 19:59:52Z giovanni $
|
|
# Maintainer: 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')
|
|
|
|
build() {
|
|
cd $startdir/src/${pkgname}2-8-7
|
|
./configure --prefix=/usr --sysconfdir=/etc --with-ssl --enable-nls \
|
|
--mandir=/usr/share/man
|
|
make || return 1
|
|
make DESTDIR=$startdir/pkg install
|
|
}
|
|
md5sums=('124253e635f7c76bdffc47b9d036c812')
|