Date: Friday, August 16, 2013 @ 18:35:20 Author: bluewind Revision: 95762
archrelease: copy trunk to community-x86_64 Added: echoping/repos/community-x86_64/ echoping/repos/community-x86_64/PKGBUILD (from rev 95761, echoping/trunk/PKGBUILD) ----------+ PKGBUILD | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) Copied: echoping/repos/community-x86_64/PKGBUILD (from rev 95761, echoping/trunk/PKGBUILD) =================================================================== --- community-x86_64/PKGBUILD (rev 0) +++ community-x86_64/PKGBUILD 2013-08-16 16:35:20 UTC (rev 95762) @@ -0,0 +1,25 @@ +# Maintainer: Florian Pritz <bluew...@xinu.at> + +pkgname=echoping +pkgver=6.0.2 +pkgrel=3 +pkgdesc="tests performance of a remote host by sending HTTP, TCP and UDP requests" +arch=('i686' 'x86_64') +url="http://echoping.sourceforge.net/" +license=('GPL') +depends=(libidn popt libldap) +source=(http://sourceforge.net/projects/$pkgname/files/$pkgname/$pkgver/$pkgname-$pkgver.tar.gz) +md5sums=('991478532b56ab3b6f46ea9fa332626f') +options=(!libtool) + +build() { + cd $srcdir/$pkgname-$pkgver + ./configure --prefix=/usr --config-cache + make +} + +package() { + cd $srcdir/$pkgname-$pkgver + + make DESTDIR=$pkgdir install +}