summaryrefslogtreecommitdiffstats
path: root/main/jwhois/APKBUILD
blob: d2fbc460c0bf468e83accdea64c220b516be69ff (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
# Maintainer: William Pitcock <nenolod@dereferenced.org>
pkgname=jwhois
pkgver=4.0
pkgrel=1
pkgdesc="WHOIS/RWHOIS client"
url="http://www.gnu.org/software/jwhois/"
license="GPL"
depends=
makedepends="libiconv-dev autoconf automake libtool"
install=
subpackages="$pkgname-doc"
source="http://ftp.gnu.org/gnu/$pkgname/$pkgname-$pkgver.tar.gz
	jwhois-libiconv.patch"
arch="all"

_builddir="$srcdir/$pkgname-$pkgver"

prepare() {
	cd "$_builddir"
	patch -p1 < "$srcdir/jwhois-libiconv.patch"
	autoreconf
}

build() {
	cd "$_builddir"
	./configure --prefix=/ \
		--sysconfdir=/etc \
		--mandir=/usr/share/man \
		--infodir=/usr/share/info \
		--disable-nls \
		|| return 1
	make || return 1
}

package() {
	cd "$_builddir"
	make DESTDIR="$pkgdir" install
}

md5sums="977d0ba90ee058a7998c94d933fc9546  jwhois-4.0.tar.gz
f861d1891a718f3b370e1ac032b0b337  jwhois-libiconv.patch"