diff options
author | James Meyer <james.meyer@operamail.com> | 2009-03-26 16:19:34 (GMT) |
---|---|---|
committer | James Meyer <james.meyer@operamail.com> | 2009-03-26 16:19:34 (GMT) |
commit | 52638b15fa4952128588533371776d2d404d6f0b (patch) | |
tree | 0e5e0b05cfcd2ad97ecfb4eebef7b0775b457ff3 /abs/extra-testing/mkvtoolnix/PKGBUILD | |
parent | 58f565b3ba3ce77ed425d8edbb7a2c0d5229eb3a (diff) | |
download | linhes_pkgbuild-52638b15fa4952128588533371776d2d404d6f0b.zip linhes_pkgbuild-52638b15fa4952128588533371776d2d404d6f0b.tar.gz linhes_pkgbuild-52638b15fa4952128588533371776d2d404d6f0b.tar.bz2 |
mkvtoolnix: ADD
Diffstat (limited to 'abs/extra-testing/mkvtoolnix/PKGBUILD')
-rw-r--r-- | abs/extra-testing/mkvtoolnix/PKGBUILD | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/abs/extra-testing/mkvtoolnix/PKGBUILD b/abs/extra-testing/mkvtoolnix/PKGBUILD new file mode 100644 index 0000000..ff6f2f0 --- /dev/null +++ b/abs/extra-testing/mkvtoolnix/PKGBUILD @@ -0,0 +1,22 @@ +# $Id: PKGBUILD 29417 2009-03-08 17:05:04Z giovanni $ +# Maintainer: Giovanni Scafora <giovanni@archlinux.org> +# Contributor: 03/08/04 <lefungus@altern.org> + +pkgname=mkvtoolnix +pkgver=2.5.3 +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.0.1' 'file' 'boost' 'lzo2') +source=("http://www.bunkus.org/videotools/${pkgname}/sources/${pkgname}-${pkgver}.tar.bz2") +md5sums=('de0b41f0dc9b3c7c59a23be4b6e3ee46') + +build() { + cd ${srcdir}/${pkgname}-${pkgver}/ + ./configure --prefix=/usr --with-boost-libdir=/usr/lib + make || return 1 + make DESTDIR=${pkgdir}/ install +} + |