mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-28 22:57:37 +00:00
24 lines
785 B
Bash
24 lines
785 B
Bash
|
# $Id: PKGBUILD 49658 2009-08-14 16:51:21Z giovanni $
|
||
|
# Maintainer: Giovanni Scafora <giovanni@archlinux.org>
|
||
|
# Contributor: 03/08/04 <lefungus@altern.org>
|
||
|
|
||
|
pkgname=mkvtoolnix
|
||
|
pkgver=2.9.8
|
||
|
pkgrel=1
|
||
|
pkgdesc="Set of tools to create, edit and inspect Matroska files"
|
||
|
arch=('i686' 'x86_64')
|
||
|
license=('GPL2')
|
||
|
url="http://www.bunkus.org/videotools/mkvtoolnix/index.html"
|
||
|
depends=('libmatroska>=0.8.1' 'flac>=1.1.4' 'libvorbis' 'wxgtk>=2.8.10.1' 'file' 'boost>=1.39.0' 'lzo2')
|
||
|
source=("http://www.bunkus.org/videotools/${pkgname}/sources/${pkgname}-${pkgver}.tar.bz2")
|
||
|
md5sums=('7b049aa43c6b39dfcb19f5a46d5574ac')
|
||
|
|
||
|
build() {
|
||
|
cd ${srcdir}/${pkgname}-${pkgver}/
|
||
|
./configure --prefix=/usr \
|
||
|
--with-boost-libdir=/usr/lib
|
||
|
make || return 1
|
||
|
make DESTDIR=${pkgdir}/ install
|
||
|
}
|
||
|
|