forked from ports/contrib
52 lines
1.6 KiB
Plaintext
52 lines
1.6 KiB
Plaintext
# Description: The cross-platform media player and streaming server
|
|
# URL: https://www.videolan.org/vlc/
|
|
# Maintainer: Thomas Penteker, tek at serverop dot de
|
|
# Depends on: ffmpeg liba52 libdvdnav libgcrypt libmad qt5
|
|
# Nice to have: opus libvorbis x264 libogg libmtp libtheora flac libvdpau
|
|
|
|
name=vlc
|
|
version=3.0.10
|
|
release=1
|
|
source=(https://download.videolan.org/pub/videolan/$name/$version/$name-$version.tar.xz)
|
|
|
|
build() {
|
|
cd $name-$version
|
|
|
|
[ -z "$(pkg-config --libs --static libavutil | grep -- '-lvdpau')" ] && PKGMK_VLC=' --disable-vdpau'
|
|
|
|
# allow building with new avcodec
|
|
#sed -i 's/ 56/ 57/g' configure.ac
|
|
autoreconf -fi
|
|
|
|
# initialize avformat structure
|
|
#sed -i 's/AVProbeData *pd;/AVProbeData pd={};/g' modules/demux/avformat/demux.c
|
|
|
|
#PKG_CONFIG_PATH="/usr/lib/ffmpeg-compat/pkgconfig" \
|
|
|
|
## grabbed from arch
|
|
## https://git.archlinux.org/svntogit/packages.git/tree/trunk/PKGBUILD?h=packages/vlc
|
|
#export CFLAGS+=" -I/usr/include/samba-4.0"
|
|
#export CPPFLAGS+=" -I/usr/include/samba-4.0"
|
|
#export CXXFLAGS+=" -std=c++11"
|
|
#export LUAC=/usr/bin/luac
|
|
#export LUA_LIBS="$(pkg-config --libs lua)"
|
|
export RCC=/usr/bin/rcc-qt5
|
|
sed -e 's|-Werror-implicit-function-declaration||g' -i configure
|
|
BUILDCC="gcc -std=gnu11" \
|
|
./configure ${PKGMK_VLC} --prefix=/usr \
|
|
--disable-nls \
|
|
--disable-fribidi \
|
|
--disable-dbus \
|
|
--disable-lua \
|
|
--disable-update-check \
|
|
--enable-alsa
|
|
|
|
#make
|
|
V=1 ./compile
|
|
make DESTDIR=$PKG install
|
|
rm -rf $PKG/usr/share/doc
|
|
|
|
# fix desktop file
|
|
sed -i 's/--started-from-file//g' $PKG/usr/share/applications/vlc.desktop
|
|
}
|