1
0
forked from ports/contrib

27 lines
771 B
Plaintext
Raw Normal View History

2020-04-29 16:20:54 +00:00
# Description: media manager for movies, tv shows, concerts and music
# URL: https://www.kvibes.de/mediaelch/
# Maintainer: Tim Biermann, tbier at posteo dot de
# Depends on: quazip5 libmediainfo
name=mediaelch
2022-03-13 14:05:03 +01:00
version=2.8.16
2020-12-21 13:59:43 +00:00
release=1
2020-04-29 16:20:54 +00:00
source=(https://github.com/Komet/MediaElch/archive/v$version/$name-$version.tar.gz)
build() {
2022-02-06 15:08:19 +01:00
cmake -S MediaElch-$version -B build -G Ninja \
-D CMAKE_INSTALL_PREFIX=/usr \
-D CMAKE_INSTALL_LIBDIR=lib \
-D CMAKE_INSTALL_LIBEXECDIR=lib/$name \
-D CMAKE_BUILD_TYPE=Release \
-D CMAKE_CXX_FLAGS_RELEASE="$CXXFLAGS" \
-D CMAKE_C_FLAGS_RELEASE="$CFLAGS" \
-D USE_EXTERN_QUAZIP=ON \
-D ENABLE_LTO=ON \
-D DISABLE_UPDATER=ON \
-Wno-dev
cmake --build build
DESTDIR=$PKG cmake --install build
2020-04-29 16:20:54 +00:00
}