blob: 86ae5d438d21d890c7d3e6378e36bfe54e972760 (
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 curl cyrus-sasl e2fsprogs glib gnutls keyutils krb5 libffi libgmp libidn2 libmms libpcre libpsl libtasn1 libunistring libzen nettle openldap openssl p11-kit rtmpdump zlib
5
6 name=libmediainfo
7 version=19.09
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 }
|