blob: aa52b32d1a41507a71d28f003d55ba6df4007e9f (
plain)
1 # Description: MediaInfo is a convenient unified display of the most relevant technical and tag data for video and audio files
2 # URL: https://mediaarea.net/en/MediaInfo
3 # Maintainer: Tim Biermann, tbier at posteo dot de
4 # Depends on: brotli e2fsprogs keyutils libmms libpsl libzen openldap rtmpdump
5
6 name=libmediainfo
7 version=20.03
8 release=1
9 source=(https://mediaarea.net/download/source/libmediainfo/$version/libmediainfo_$version.tar.xz)
10
11 build() {
12 cd MediaInfoLib/Project/GNU/Library
13 ./autogen.sh
14 ./configure --prefix=/usr \
15 --enable-shared \
16 --disable-static \
17 --with-libcurl \
18 --with-libmms
19 make
20 make DESTDIR=$PKG install
21 }
|