summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorfordprefect2019-06-03 20:18:37 +0200
committerfordprefect2019-06-03 20:18:37 +0200
commitf8a71965fddd29f0c658cb7d475092a0b2e02001 (patch)
tree28f894b3e98980a6e4c340989d0f8a374f0d3119
parentf9d9c99ba22348700b807baa269b86546afc614d (diff)
downloadaur-f8a71965fddd29f0c658cb7d475092a0b2e02001.tar.gz
fix build
-rw-r--r--.SRCINFO6
-rw-r--r--PKGBUILD9
2 files changed, 7 insertions, 8 deletions
diff --git a/.SRCINFO b/.SRCINFO
index 0ec46732344e..7c5edae8470f 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,9 +1,9 @@
# Generated by mksrcinfo v8
-# Sat May 18 07:53:30 UTC 2019
+# Mon Jun 3 18:18:24 UTC 2019
pkgbase = dnstwist
pkgdesc = simple tool to look for registered domains similar to your own, only distinguished by typos. useful for detection of fraud and fishing attacs
pkgver = 20190518
- pkgrel = 1
+ pkgrel = 2
url = https://github.com/elceef/dnstwist
arch = any
license = unknown
@@ -11,7 +11,7 @@ pkgbase = dnstwist
depends = python-pygeoip
depends = python-requests
depends = python-ssdeep
- source = https://github.com/elceef/dnstwist/archive/20190518.tar.gz
+ source = dnstwist-20190518.tar.gz::https://github.com/elceef/dnstwist/archive/20190518.tar.gz
md5sums = 306a5adb9e809d5ff5b04777189abbb5
pkgname = dnstwist
diff --git a/PKGBUILD b/PKGBUILD
index c6313e92618f..b33b2d689f75 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -1,17 +1,16 @@
# Maintainer: fordprefect <fordprefect@dukun.de>
pkgname=dnstwist
pkgver=20190518
-pkgrel=1
+pkgrel=2
pkgdesc="simple tool to look for registered domains similar to your own, only distinguished by typos. useful for detection of fraud and fishing attacs"
url="https://github.com/elceef/dnstwist"
arch=('any')
license=('unknown')
depends=("python-dnspython" "python-pygeoip" "python-requests" "python-ssdeep")
-source=("https://github.com/elceef/dnstwist/archive/${pkgver}.tar.gz")
+source=("$pkgname-$pkgver.tar.gz::https://github.com/elceef/dnstwist/archive/${pkgver}.tar.gz")
md5sums=('306a5adb9e809d5ff5b04777189abbb5')
package() {
- install -D "${srcdir}/${pkgname}-${pkgver}/dnstwist.py" "${pkgdir}/usr/bin/dnstwist.py"
- mkdir -p "${pkgdir}/usr/share/dnstwist/examples/"
- cp "${srcdir}/${pkgname}-${pkgver}/docs/examples/"* "${pkgdir}/usr/share/dnstwist/examples/"
+ install -D "${pkgname}-${pkgver}/dnstwist.py" "${pkgdir}/usr/bin/dnstwist.py"
+ install -D "${pkgname}-${pkgver}/docs/LICENSE" "${pkgdir}/usr/share/licenses/$pkgname/LICENSE"
}