summaryrefslogtreecommitdiff
path: root/pcr/ncdc/PKGBUILD
blob: 200e8c0079184420706bcb78508d7955061a6633 (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
# Maintainer (AUR): Robert Holt <holt.r94 at gmail dot com>
# Contributor (AUR): Anton Larionov <diffident dot cat at gmail dot com>
# Contributor (AUR): Yorhel <projects@yorhel.nl>
# Contributor (AUR): archtux <antonio.arias99999@gmail.com>
# Maintainer: Luke R. <g4jc@openmailbox.org> GPG: rsa4096/3EAE8697

# parabola changes and rationale:
#  - switched urls to https
#  - verifying tarball signature

pkgname=ncdc
pkgver=1.22
pkgrel=1.1
pkgdesc="Modern and lightweight direct connect client with a friendly ncurses interface"
arch=('i686' 'x86_64' 'armv7h')
url="http://dev.yorhel.nl/ncdc"
license=('MIT')
depends=('bzip2' 'gnutls' 'ncurses' 'geoip' 'sqlite' 'glib2' 'libmaxminddb')
source=("https://dev.yorhel.nl/download/$pkgname-$pkgver.tar.gz"{,.asc})
md5sums=('c4225a82a6cbeea6944bcce93a71fa3a'
         'SKIP')
validpgpkeys=('74460D32B80810EBA9AFA2E962394C698C2739FA') # Yoran Heling

build() {
  cd "$srcdir/$pkgname-$pkgver"
  ./configure --prefix=/usr --with-geoip
  make
}

package() {
  cd "$srcdir/$pkgname-$pkgver"
  make DESTDIR="$pkgdir/" install
  install -Dm644 COPYING "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
}

# vim:set ts=2 sw=2 et: