blob: 2afb9e89afd0b43c86a73d6bbd9b998ef5be5af7 (
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
|
# Contributor: Jakub Jirutka <jakub@jirutka.cz>
# Maintainer: Jakub Jirutka <jakub@jirutka.cz>
pkgname=mediainfo
pkgver=17.12
pkgrel=0
pkgdesc="Supplies technical and tag information about a video or audio file (CLI)"
url="https://mediaarea.net/en/MediaInfo"
arch="all"
license="BSD"
makedepends="automake autoconf cmake libmediainfo-dev>=$pkgver libtool libzen-dev"
source="https://mediaarea.net/download/source/$pkgname/$pkgver/${pkgname}_$pkgver.tar.bz2"
builddir="$srcdir/MediaInfo"
_clidir="$builddir/Project/GNU/CLI"
prepare() {
default_prepare
rm -Rf "$builddir"/Project/MS*
cd "$_clidir"
./autogen.sh
}
build() {
cd "$_clidir"
./configure \
--build=$CBUILD \
--host=$CHOST \
--prefix=/usr \
--libdir=/usr/lib \
--sysconfdir=/etc \
--enable-static=no
make
}
check() {
cd "$_clidir"
./mediainfo --version
}
package() {
cd "$_clidir"
make DESTDIR="$pkgdir" install
}
sha512sums="8c378a09eed95ca71424eda6d84fc6d6546a38dfe47e9f5c186f244b257662b1c28df201cebbb3a7bb5906b45e5824ea2d195a231ca6e1070bb6dcd1f6ed8f8f mediainfo_17.12.tar.bz2"
|