22 lines
605 B
Plaintext
22 lines
605 B
Plaintext
# Description: MediaInfo is a convenient unified display of the most relevant technical and tag data for video and audio files
|
|
# URL: https://mediaarea.net/en/MediaInfo
|
|
# Maintainer: Tim Biermann, tbier at posteo dot de
|
|
# Depends on: libzen tinyxml
|
|
|
|
name=libmediainfo
|
|
version=22.06
|
|
release=1
|
|
source=(https://mediaarea.net/download/source/libmediainfo/$version/libmediainfo_$version.tar.xz)
|
|
|
|
build() {
|
|
cd MediaInfoLib/Project/GNU/Library
|
|
./autogen.sh
|
|
./configure --prefix=/usr \
|
|
--enable-shared \
|
|
--disable-static \
|
|
--with-libcurl \
|
|
--with-libmms
|
|
make
|
|
make DESTDIR=$PKG install
|
|
}
|