core/libmp4v2/PKGBUILD

29 lines
645 B
Bash
Raw Normal View History

2010-03-14 23:48:48 +08:00
# $Id: PKGBUILD 71330 2010-03-06 18:41:25Z andrea $
# Maintainer:
# Contributor: Andrea Scarpino <andrea@archlinux.org>
# Contributor: Jan de Groot <jgc@archlinux.org>
pkgname=libmp4v2
2012-08-29 15:31:09 +08:00
pkgver=2.0.0
2010-03-14 23:48:48 +08:00
pkgrel=1
pkgdesc="MPEG-4 library"
arch=('i686' 'x86_64')
license=('MPL')
url="http://code.google.com/p/mp4v2/"
options=('!libtool')
2012-08-29 15:31:09 +08:00
source=("http://mp4v2.googlecode.com/files/mp4v2-${pkgver}.tar.bz2")
md5sums=('c91f06711225b34b4c192c9114887b14')
2010-03-14 23:48:48 +08:00
build() {
2012-08-29 15:31:09 +08:00
cd "${srcdir}/mp4v2-${pkgver}"
2010-03-14 23:48:48 +08:00
2012-08-29 15:31:09 +08:00
./configure --prefix=/usr
make
2010-03-14 23:48:48 +08:00
}
package() {
2012-08-29 15:31:09 +08:00
cd "${srcdir}/mp4v2-${pkgver}"
make DESTDIR=${pkgdir} install
make DESTDIR=${pkgdir} install-man
}