initial import
This commit is contained in:
31
fping/PKGBUILD
Normal file
31
fping/PKGBUILD
Normal file
@@ -0,0 +1,31 @@
|
||||
# Maintainer: Jesus E. <heckyel@riseup.net>
|
||||
|
||||
pkgname=fping
|
||||
pkgver=5.0
|
||||
pkgrel=1
|
||||
pkgdesc='Utility to ping multiple hosts at once'
|
||||
url='https://www.fping.org/'
|
||||
arch=('i686' 'x86_64')
|
||||
license=('Public-Domain' 'Modified-BSD')
|
||||
depends=('glibc')
|
||||
install=${pkgname}.install
|
||||
source=(https://www.fping.org/dist/${pkgname}-${pkgver}.tar.gz{,.asc})
|
||||
sha512sums=('c843f7bb7c4e3289c4dd9eb8ae2ab93a363316c0000aac9187f79580a3d2505df179f2e0ae9e0a791c74bfc9e17c476874f8e122dfa6ad74930498c4e02d0de3'
|
||||
'SKIP')
|
||||
validpgpkeys=('8D1E89B8FBA920A5A609F2615A11A22BC5A1F734') # David Schweikert <david@schweikert.ch>
|
||||
|
||||
build() {
|
||||
cd ${pkgname}-${pkgver}
|
||||
./configure \
|
||||
--prefix=/usr \
|
||||
--mandir=/usr/share/man \
|
||||
--enable-ipv4 \
|
||||
--enable-ipv6
|
||||
make
|
||||
}
|
||||
|
||||
package() {
|
||||
cd ${pkgname}-${pkgver}
|
||||
make DESTDIR="${pkgdir}" install
|
||||
install -Dm 644 COPYING -t "${pkgdir}/usr/share/licenses/${pkgname}"
|
||||
}
|
||||
Reference in New Issue
Block a user