diff options
Diffstat (limited to 'community/whois')
-rw-r--r-- | community/whois/APKBUILD | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/community/whois/APKBUILD b/community/whois/APKBUILD new file mode 100644 index 0000000000..64371caab9 --- /dev/null +++ b/community/whois/APKBUILD @@ -0,0 +1,30 @@ +# Contributor: Stuart Cardall <developer@it-offshore.co.uk> +# Maintainer: Stuart Cardall <developer@it-offshore.co.uk> +pkgname=whois +pkgver=5.2.12 +pkgrel=1 +pkgdesc="Intelligent WHOIS client by Marco d'Itri" +url="http://www.linux.it/~md/software/" +arch="all" +license="GPL2" +makedepends="$depends_dev perl libidn-dev gettext-dev" +subpackages="$pkgname-doc" +source="$pkgname-$pkgver.tar.gz::https://github.com/rfc1036/$pkgname/archive/v$pkgver.tar.gz" + +_builddir="$srcdir"/$pkgname-$pkgver +build() { + cd "$_builddir" + make CONFIG_FILE="/etc/whois.conf" \ + HAVE_LIBIDN=1 HAVE_ICONV=1 \ + CFLAGS="$CFLAGS -lintl $CXXFLAGS" || return 1 +} + +package() { + cd "$_builddir" + make BASEDIR="$pkgdir" install-whois || return 1 + install -D -m644 whois.conf "$pkgdir/etc/whois.conf" +} + +md5sums="c7d86f4cdc97f92722b2500bf12aefd1 whois-5.2.12.tar.gz" +sha256sums="8485aa02909fd6aaa1cfd8b5e63559310879bf8a62793a83c96a4502164b968a whois-5.2.12.tar.gz" +sha512sums="812ae2a344e5b190175213cca1b10cc58821312f8ad8b31995ecb6963e71b1343ccfa6f06ce896856b9c9622be3dfb22e1fba30ed254f25373f08b4d84143552 whois-5.2.12.tar.gz" |