From b5273d558094440b527a6b535068a38a063017e4 Mon Sep 17 00:00:00 2001 From: David P Date: Fri, 12 May 2017 19:00:37 -0300 Subject: Updated fpdns --- pcr/fpdns/PKGBUILD | 53 +++++++++++++++++++++++++++++++++-------------------- 1 file changed, 33 insertions(+), 20 deletions(-) (limited to 'pcr') diff --git a/pcr/fpdns/PKGBUILD b/pcr/fpdns/PKGBUILD index aa965362e..b143e8ce6 100644 --- a/pcr/fpdns/PKGBUILD +++ b/pcr/fpdns/PKGBUILD @@ -1,27 +1,40 @@ +# Maintainer: David P. # Contributor (Arch): Ermak -# Maintainer: Omar Vega Ramos -pkgname=fpdns -pkgver=0.9.3 -pkgrel=1.1 -pkgdesc="Program that remotely determines DNS server versions" -url="http://code.google.com/p/fpdns/" -depends=('') -license=('BSD') +# Contributor: Omar Vega Ramos + +pkgname='fpdns' +pkgver='20130404' +pkgrel=8 +epoch=1 +pkgdesc='Program that remotely determines DNS server versions.' +groups=('blackarch' 'blackarch-fingerprint') +url='https://github.com/kirei/fpdns' +depends=('perl') +license=('BSD3') options=('!emptydirs') -arch=('i686' 'x86_64') -source=('http://fpdns.googlecode.com/files/Net-DNS-Fingerprint-0.9.3.tar.gz') -md5sums=('16f1fbc9e5c8b935a0a48a509dc58899') +arch=('any') +source=("https://github.com/kirei/fpdns/archive/${pkgver}.tar.gz") +sha1sums=('3c3b33df1861a1a9901601d6c2252b2427ba8763') build() { - cd ${srcdir}/Net-DNS-Fingerprint-0.9.3 - eval `perl -V:archname` + cd "$srcdir/fpdns-$pkgver" + + eval $(perl -V:archname) + /usr/bin/perl Makefile.PL \ - INSTALLARCHLIB=/usr/lib/perl5/current/${archname} \ - INSTALLSITELIB=/usr/lib/perl5/site_perl/current \ - INSTALLSITEARCH=/usr/lib/perl5/site_perl/current/${archname} - /usr/bin/make || return 1 - /usr/bin/make DESTDIR=${pkgdir} install - /usr/bin/find ${pkgdir} -name '.packlist' -delete - /usr/bin/find ${pkgdir} -name '*.pod' -delete + + INSTALLARCHLIB=/usr/lib/perl5/current/$archname \ + INSTALLSITELIB=/usr/lib/perl5/site_perl/current \ + INSTALLSITEARCH=/usr/lib/perl5/site_perl/current/$archname + + /usr/bin/make } +package() { + cd "$srcdir/fpdns-$pkgver" + + install -Dm755 apps/fpdns "$pkgdir/usr/bin/fpdns" + install -Dm444 blib/lib/Net/DNS/Fingerprint.pm \ + "$pkgdir/usr/lib/perl5/site_perl/Net/DNS/Fingerprint.pm" + install -Dm644 LICENSE "$pkgdir/usr/share/licenses/LICENSE" +} -- cgit v1.2.3