# Maintainer (AUR): Robert Holt # Contributor (AUR): Anton Larionov # Contributor (AUR): Yorhel # Contributor (AUR): archtux # Maintainer: Luke R. GPG: rsa4096/3EAE8697 # parabola changes and rationale: # - switched urls to https # - verifying tarball signature pkgname=ncdc pkgver=1.20 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' 'sqlite' 'glib2' 'geoip') source=("https://dev.yorhel.nl/download/$pkgname-$pkgver.tar.gz"{,.asc}) md5sums=('662fbddf17392cdb963d480af1812ae7' '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: