blob: 1e59bd89c4427ada7ee25024178e8039ceb39895 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
|
# Maintainer: Chocobo1 <chocobo1 AT archlinux DOT net>
pkgname=lynx-git
pkgver=2.9.0dev.10k.r714.g09edd94f
pkgrel=1
pkgdesc="The text web browser"
arch=('i686' 'x86_64')
url="https://lynx.invisible-island.net/lynx.html"
license=('GPL')
depends=('glibc' 'libidn2' 'ncurses' 'openssl')
makedepends=('git')
provides=("lynx=$pkgver")
conflicts=('lynx')
backup=('etc/lynx.cfg')
source=("git+https://github.com/ThomasDickey/lynx-snapshots.git")
sha256sums=('SKIP')
pkgver() {
cd "lynx-snapshots"
_tag=$(git tag -l --sort -creatordate | head -n1)
_rev=$(git rev-list --count $_tag..HEAD)
_hash=$(git rev-parse --short HEAD)
printf "%s.r%s.g%s" "$_tag" "$_rev" "$_hash" | sed 's/^v//;s/[-_]/./g'
}
build() {
cd "lynx-snapshots"
./configure \
--prefix="/usr" \
--sysconfdir="/etc" \
--mandir="/usr/share/man" \
--with-ssl="/usr" \
--enable-ipv6 \
--enable-nls
make
}
check() {
cd "lynx-snapshots"
make check
}
package() {
cd "lynx-snapshots"
make DESTDIR="$pkgdir" install
# FS#20404 - points to local help
sed -i -e "s|^HELPFILE.*$|HELPFILE:file:///usr/share/doc/lynx/lynx_help/lynx_help_main.html|" "$pkgdir/etc/lynx.cfg"
install -d "$pkgdir/usr/share/doc/lynx"
cp -rf "lynx_help" "$pkgdir/usr/share/doc/lynx"
}
|