summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 4e944b724b05ebc0966d613e2153f2350a7e7e25 (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
# Maintainer: Chocobo1 <chocobo1 AT archlinux DOT net>

pkgname=whois-git
pkgver=5.2.18.r0.g5dd942b
pkgrel=1
pkgdesc="Provides useful functions commonly found on BSD systems"
arch=('i686' 'x86_64')
url="https://github.com/rfc1036/whois"
license=('GPL2')
depends=('glibc' 'libidn2')
makedepends=('git' 'perl')
provides=('whois')
conflicts=('whois')
backup=('etc/whois.conf')
source=("git+https://github.com/rfc1036/whois.git#branch=next")
sha256sums=('SKIP')


pkgver() {
  cd "whois"

  git describe --long --tags | sed 's/^v//;s/\([^-]*-g\)/r\1/;s/-/./g'
}

build() {
  cd "whois"

  make CFLAGS="$CFLAGS $CPPFLAGS" prefix="/usr" \
    CONFIG_FILE=/etc/whois.conf \
    LOCALEDIR=1 \
    HAVE_LIBIDN=1 HAVE_ICONV=1
}

package() {
  cd "whois"

  make BASEDIR="$pkgdir" prefix="/usr" install-whois install-pos
  install -Dm644 "whois.conf" "$pkgdir/etc/whois.conf"
}