aboutsummaryrefslogtreecommitdiffstats
path: root/main/lynx/APKBUILD
blob: e6cb7243a84724c220a4fa320812a9ba3a1893c3 (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
# Contributor: Sören Tempel <soeren+alpine@soeren-tempel.net>
# Contributor: Sheila Aman <sheila@vulpine.house>
# Maintainer: Sheila Aman <sheila@vulpine.house>
pkgname=lynx
pkgver=2.8.9_p1
_relver=${pkgver/_p/rel.}
pkgrel=6
pkgdesc="Cross-platform text-based browser"
url="https://lynx.invisible-island.net/"
arch="all"
license="GPL-2.0-only"
depends="gzip"
makedepends="openssl-dev gettext zlib-dev glib-dev perl ncurses-dev"
subpackages="$pkgname-doc $pkgname-lang"
source="http://invisible-mirror.net/archives/lynx/tarballs/lynx$_relver.tar.bz2
	CVE-2021-38165.patch"
builddir="$srcdir"/$pkgname$_relver

# secfixes:
#   2.8.9_p1-r3:
#     - CVE-2021-38165

build() {
	./configure \
		--build=$CBUILD \
		--host=$CHOST \
		--prefix=/usr \
		--sysconfdir=/etc \
		--mandir=/usr/share/man \
		--infodir=/usr/share/info \
		--localstatedir=/var \
		--enable-ipv6 \
		--with-ssl \
		--enable-default-colors \
		--with-screen=ncursesw \
		--with-zlib \
		--disable-full-paths \
		--enable-externs \
		--enable-nls
	make helpdir=/usr/share/doc/lynx/help \
		docdir=/usr/share/doc/lynx
}

check() {
	./lynx -version
}

package() {
	make DESTDIR="$pkgdir" install install-help install-doc \
		helpdir=/usr/share/doc/lynx/help \
		docdir=/usr/share/doc/lynx
}

sha512sums="
61edbe082684fcbd91bdbf4f4d27c3baf92358811aaffc2f8af46adf23ca7b48aede1520fc5f2a8fc974a2f4bbf4e57e7e6027a187bfc6101e56878c98178e6d  lynx2.8.9rel.1.tar.bz2
b68d9f3a89c1e09a13c5d8cc3769fb7e6fe86cce83c4c9000f90425a925b50ff62c14ca52330777d3e94c292a0dca6b5fedc7193030e276f376d91da42b030c5  CVE-2021-38165.patch
"