summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: d1f55d9ae57d408790f21b0eb58714d497b7ed01 (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
# Maintainer: friehmaen <fm@xers.de>
# Contributor: ianux <ianux@free.fr>

pkgname=asdcplib2
pkgver=2.5.11
pkgrel=1
pkgdesc="open source implementation of SMPTE and the MXF Interop “Sound & Picture Track File” format with IMF support"
arch=('i686' 'x86_64')
url="http://www.cinecert.com/asdcplib/"
license=('GPL3')
depends=('expat' 'openssl')
source=(http://download.cinecert.com/asdcplib/asdcplib-${pkgver}.tar.gz)
sha1sums=('96932a265d822a2cbbf3a0b3e4821140fee9dc89')

build() {
  cd asdcplib-${pkgver}
  ./configure --prefix=/usr --enable-as-02
  make
}

package() {
  cd asdcplib-${pkgver}
  make DESTDIR=${pkgdir} install
}