desktop/par2cmdline/PKGBUILD

30 lines
627 B
Bash
Raw Normal View History

pkgname=par2cmdline
2015-12-04 03:13:59 +08:00
pkgver=0.6.14
pkgrel=1
2014-06-06 16:28:05 +08:00
arch=('x86_64')
pkgdesc='A PAR 2.0 compatible file verification and repair tool'
url='https://github.com/BlackIkeEagle/par2cmdline'
license=('GPL2')
depends=('gcc-libs')
source=("$pkgname-$pkgver.tar.gz::https://github.com/BlackIkeEagle/$pkgname/archive/v$pkgver.tar.gz")
2015-12-04 03:13:59 +08:00
sha256sums=('2fd831ba924d9f0ecd9242ca45551b6995ede1ed281af79aa30e7490d5596e7a')
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
}