diff options
author | root <root@rshg054.dnsready.net> | 2012-02-18 23:15:35 +0000 |
---|---|---|
committer | root <root@rshg054.dnsready.net> | 2012-02-18 23:15:35 +0000 |
commit | 1098e9db0acc5bb5c45af5778492faf3b4c99dd6 (patch) | |
tree | 24f65718bdb292fc62194464db8bee1348c48ee5 /community/liboping/PKGBUILD | |
parent | b31146f2405c7d0f50bcc36b682af46be84cdeb8 (diff) |
Sat Feb 18 23:15:35 UTC 2012
Diffstat (limited to 'community/liboping/PKGBUILD')
-rw-r--r-- | community/liboping/PKGBUILD | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/community/liboping/PKGBUILD b/community/liboping/PKGBUILD index f4c9acae2..3e982e04b 100644 --- a/community/liboping/PKGBUILD +++ b/community/liboping/PKGBUILD @@ -1,7 +1,8 @@ +# $Id: PKGBUILD 64661 2012-02-17 14:00:22Z bisson $ # Maintainer: Gaetan Bisson <bisson@archlinux.org> pkgname=liboping -pkgver=1.6.1 +pkgver=1.6.2 pkgrel=1 pkgdesc='C library to generate ICMP echo requests, better known as "ping packets"' url='http://verplant.org/liboping/' @@ -12,13 +13,13 @@ depends=('libcap') makedepends=('ncurses') optdepends=('perl: perl bindings' 'ncurses: noping CLI tool') -source=("${url}files/$pkgname-$pkgver.tar.gz") -sha1sums=('8203096fa932d157069be7aeda3a1025132e129f') +source=("${url}files/${pkgname}-${pkgver}.tar.gz") +sha256sums=('1b3203e5f13b35a6f7ff163c26e4f42284a625fa30d3bdbfdafb6cccb1f33803') install=install build() { - cd "$srcdir/$pkgname-$pkgver" + cd "${srcdir}/${pkgname}-${pkgver}" # setting capabilities/setuid is futile in fakeroot # (we do that in the install script) @@ -29,6 +30,6 @@ build() { } package() { - cd "$srcdir/$pkgname-$pkgver" - make DESTDIR="$pkgdir" install + cd "${srcdir}/${pkgname}-${pkgver}" + make DESTDIR="${pkgdir}" install } |