contrib/libmediainfo/Pkgfile

27 lines
718 B
Plaintext
Raw Normal View History

2019-06-11 23:45:46 +02:00
# 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
2022-12-24 20:31:24 +01:00
# Depends on: libmms libzen tinyxml
2019-06-11 23:45:46 +02:00
name=libmediainfo
2022-12-24 20:31:24 +01:00
version=22.12
2019-06-11 23:45:46 +02:00
release=1
source=(https://mediaarea.net/download/source/libmediainfo/$version/libmediainfo_$version.tar.xz)
build() {
2020-04-29 18:21:22 +02:00
cd MediaInfoLib/Project/GNU/Library
2022-12-24 20:31:24 +01:00
export CFLAGS="$CFLAGS -I/usr/include/libmms"
export CPPFLAGS="$CFLAGS"
export CXXFLAGS="$CFLAGS"
2020-04-29 18:21:22 +02:00
./autogen.sh
./configure --prefix=/usr \
--enable-shared \
--disable-static \
--with-libcurl \
--with-libmms
make
make DESTDIR=$PKG install
2019-06-11 23:45:46 +02:00
}