28 lines
897 B
Bash
28 lines
897 B
Bash
# Maintainer: Jesus E. <heckyel@riseup.net>
|
|
|
|
pkgname=par2cmdline
|
|
pkgver=0.8.1
|
|
pkgrel=1
|
|
pkgdesc='A PAR 2.0 compatible file verification and repair tool'
|
|
url='https://github.com/BlackIkeEagle/par2cmdline'
|
|
license=('GPL-2')
|
|
arch=('i686' 'x86_64')
|
|
depends=('gcc-libs')
|
|
source=("https://github.com/Parchive/$pkgname/releases/download/v$pkgver/$pkgname-$pkgver.tar.gz"
|
|
"https://github.com/Parchive/$pkgname/releases/download/v$pkgver/$pkgname-$pkgver.tar.gz.sig")
|
|
sha512sums=('b0032639353d869ffa449c8b5f27fe1deec0e5e4326ba90aae5c8a03f82441c69ba40f2032c4cbda98f415c3d100136beed8285d099ffbf32329451e719478d9'
|
|
'SKIP')
|
|
validpgpkeys=('DB2277BCD500AA3825610BDDDB323392796CA067')
|
|
|
|
build() {
|
|
cd "$pkgname-$pkgver"
|
|
./configure --prefix=/usr
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd "$pkgname-$pkgver"
|
|
make DESTDIR="$pkgdir" install
|
|
install -Dm644 COPYING -t "$pkgdir/usr/share/licenses/$pkgname"
|
|
}
|