Date: Tuesday, January 17, 2023 @ 09:39:19
Author: mtorromeo
Revision: 1386728
archrelease: copy trunk to community-x86_64
Added:
arp-scan/repos/community-x86_64/PKGBUILD
(from rev 1386727, arp-scan/trunk/PKGBUILD)
Deleted:
arp-scan/repos/community-x86_64/PKGBUILD
----------+
PKGBUILD | 55 ++++++++++++++++++++++++++++++-------------------------
1 file changed, 30 insertions(+), 25 deletions(-)
Deleted: PKGBUILD
===================================================================
--- PKGBUILD 2023-01-17 09:39:09 UTC (rev 1386727)
+++ PKGBUILD 2023-01-17 09:39:19 UTC (rev 1386728)
@@ -1,25 +0,0 @@
-# Maintainer: Massimiliano Torromeo <[email protected]>
-# Contributor: xav <xav at ethertricks dot net>
-
-pkgname=arp-scan
-pkgver=1.10.0
-pkgrel=1
-pkgdesc="A tool that uses ARP to discover and fingerprint IP hosts on the
local network"
-arch=('x86_64')
-url="https://github.com/royhills/arp-scan"
-license=('GPL')
-depends=('libpcap' 'perl-libwww')
-source=(https://github.com/royhills/$pkgname/archive/$pkgver/$pkgname-$pkgver.tar.gz)
-sha256sums=('204b13487158b8e46bf6dd207757a52621148fdd1d2467ebd104de17493bab25')
-
-build() {
- cd "$srcdir"/$pkgname-$pkgver
- autoreconf --install
- ./configure --prefix=/usr --mandir=/usr/share/man
- make
-}
-
-package() {
- cd "$srcdir"/$pkgname-$pkgver
- make DESTDIR="${pkgdir}" install
-}
Copied: arp-scan/repos/community-x86_64/PKGBUILD (from rev 1386727,
arp-scan/trunk/PKGBUILD)
===================================================================
--- PKGBUILD (rev 0)
+++ PKGBUILD 2023-01-17 09:39:19 UTC (rev 1386728)
@@ -0,0 +1,30 @@
+# Maintainer: Massimiliano Torromeo <[email protected]>
+# Contributor: xav <xav at ethertricks dot net>
+
+pkgname=arp-scan
+pkgver=1.10.0
+pkgrel=2
+pkgdesc="A tool that uses ARP to discover and fingerprint IP hosts on the
local network"
+arch=('x86_64')
+url="https://github.com/royhills/arp-scan"
+license=('GPL')
+depends=('libpcap' 'perl-libwww')
+backup=('etc/arp-scan/mac-vendor.txt')
+source=(https://github.com/royhills/$pkgname/archive/$pkgver/$pkgname-$pkgver.tar.gz)
+sha256sums=('204b13487158b8e46bf6dd207757a52621148fdd1d2467ebd104de17493bab25')
+
+build() {
+ cd "$srcdir"/$pkgname-$pkgver
+ autoreconf --install
+ ./configure \
+ --prefix=/usr \
+ --sysconfdir=/etc \
+ --localstatedir=/var \
+ --mandir=/usr/share/man
+ make
+}
+
+package() {
+ cd "$srcdir"/$pkgname-$pkgver
+ make DESTDIR="${pkgdir}" install
+}