18 lines
462 B
Plaintext
18 lines
462 B
Plaintext
|
# Description: Supplies technical and tag information about a video or audio file (CLI interface)
|
||
|
# URL: https://mediaarea.net/
|
||
|
# Maintainer: Tim Biermann, tbier at posteo dot de
|
||
|
# Depends on: libmediainfo
|
||
|
|
||
|
name=mediainfo
|
||
|
version=19.04
|
||
|
release=1
|
||
|
source=(https://mediaarea.net/download/source/mediainfo/$version/mediainfo_$version.tar.xz)
|
||
|
|
||
|
build() {
|
||
|
cd MediaInfo/Project/GNU/CLI
|
||
|
./autogen.sh
|
||
|
./configure --prefix=/usr
|
||
|
make
|
||
|
make DESTDIR="$PKG" install
|
||
|
}
|