summaryrefslogtreecommitdiff
path: root/extra/ogmtools/PKGBUILD
blob: 680260b06c01685d5e3af5e165647ba34ee45ed9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
# $Id: PKGBUILD 137699 2011-09-10 12:46:29Z pierre $
# Maintainer: Giovanni Scafora <giovanni@archlinux.org>

pkgname=ogmtools
pkgver=1.5
pkgrel=4
pkgdesc="Information, extraction or creation for OGG media streams"
arch=('i686' 'x86_64')
url="http://www.bunkus.org/videotools/ogmtools"
license=('GPL')
depends=('libvorbis' 'libdvdread' 'gcc-libs')
source=("http://www.bunkus.org/videotools/${pkgname}/${pkgname}-${pkgver}.tar.bz2")
md5sums=('02d356e3d21d53b1d9715bab223d8996')

build() {
  cd "${srcdir}/${pkgname}-${pkgver}"

  ./configure --prefix=/usr \
              --mandir=/usr/share/man
  make
}

package() {
  cd "${srcdir}/${pkgname}-${pkgver}"
  make DESTDIR="${pkgdir}" install
}