# Maintainer: Jaroslav Lichtblau # Contributor: Paul Bredbury # Contributor: Matt McDonald pkgname=libpar2 pkgver=0.2 pkgrel=3 pkgdesc="Parity checking library," arch=('i686' 'x86_64') url="http://parchive.sourceforge.net/" license=('GPL') depends=('libsigc++2.0') makedepends=('autoconf' 'automake' 'pkgconfig') options=(!libtool) source=("http://downloads.sourceforge.net/sourceforge/parchive/$pkgname-$pkgver.tar.gz" "libpar2-0.2-bugfixes.patch") md5sums=('94c6df4e38efe08056ecde2a04e0be91' '66c306f42fb81016a7a58af8f45e2b68') build() { cd ${srcdir}/$pkgname-$pkgver patch <../libpar2-0.2-bugfixes.patch autoreconf -fi || return 1 ./configure --prefix=/usr make || return 1 make DESTDIR=${pkgdir} install #Docs install -d ${pkgdir}/usr/share/doc/$pkgname install -m644 -t ${pkgdir}/usr/share/doc/$pkgname/ AUTHORS PORTING README ROADMAP || return 1 }