# $Id: PKGBUILD 39825 2009-05-21 14:24:07Z jgc $ # Maintainer: damir pkgname=ogmtools pkgver=1.5 pkgrel=3 pkgdesc="Tools that allow information about, extraction from or creation of OGG media streams (OGM)" arch=(i686 x86_64) url="http://www.bunkus.org/videotools/ogmtools" license=('GPL') depends=('libvorbis' 'libdvdread>=4.1.3' 'gcc-libs>=4.4') source=(${url}/${pkgname}-${pkgver}.tar.bz2) md5sums=('02d356e3d21d53b1d9715bab223d8996') build() { cd "${srcdir}/${pkgname}-${pkgver}" ./configure --prefix=/usr --mandir=/usr/share/man || return 1 make || return 1 make DESTDIR="${pkgdir}" install || return 1 }