# $Id: PKGBUILD 62520 2012-01-20 16:52:42Z seblu $ # Maintainer: Sébastien Luttringer pkgname=par2cmdline pkgver=0.5.3 pkgrel=1 pkgdesc='A PAR 2.0 compatible file verification and repair tool' url='https://github.com/BlackIkeEagle/par2cmdline' license=('GPL2') arch=('i686' 'x86_64') source=("https://github.com/downloads/BlackIkeEagle/$pkgname/$pkgname-$pkgver.tar.xz") md5sums=('708db095eac3d83f21ce27b8be123c54') build() { cd ${pkgname}-${pkgver} aclocal automake --add-missing autoconf ./configure --prefix=/usr make } check() { cd ${pkgname}-${pkgver} make check } package() { cd ${pkgname}-${pkgver} make DESTDIR="$pkgdir" install } # vim:set ts=2 sw=2 ft=sh et: