mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-03 20:47:13 +08:00
61cb4a22c4
Fix #51 #18 #65
106 lines
4.0 KiB
Bash
106 lines
4.0 KiB
Bash
# Contributions from ArchLinux: https://projects.archlinux.org/svntogit/packages.git/tree/trunk?h=packages/vlc
|
|
|
|
pkgname=vlc
|
|
pkgver=3.0.2
|
|
pkgrel=2
|
|
pkgdesc='Multi-platform MPEG, VCD/DVD, and DivX player'
|
|
url='https://www.videolan.org/vlc/'
|
|
arch=('x86_64')
|
|
license=('LGPL2.1' 'GPL2')
|
|
depends=('a52dec' 'libdvbpsi' 'libxpm' 'libdca' 'qt5-base' 'qt5-x11extras' 'libproxy' 'qt5-svg'
|
|
'sdl_image' 'libdvdnav' 'libtiger' 'lua' 'libmatroska' 'jack2'
|
|
'zvbi' 'taglib' 'libmpcdec' 'ffmpeg' 'faad2' 'libupnp'
|
|
'libshout' 'libmad' 'libmpeg2' 'xcb-util-keysyms' 'libtar'
|
|
'libxinerama' 'gst-plugins-base-libs')
|
|
makedepends=('live-media' 'libnotify' 'libbluray' 'flac' 'chromaprint'
|
|
'libdc1394' 'libavc1394' 'lirc' 'libcaca' 'qt5-tools'
|
|
'librsvg' 'portaudio' 'libgme' 'xosd' 'projectm'
|
|
'twolame' 'aalib' 'libmtp' 'libdvdcss' 'smbclient'
|
|
'libgoom2' 'vcdimager' 'opus' 'libssh2' 'mesa' 'wayland-protocols')
|
|
optdepends=('avahi: for service discovery using bonjour protocol'
|
|
'libnotify: for notification plugin'
|
|
'ncurses: for ncurses interface support'
|
|
'libdvdcss: for decoding encrypted DVDs'
|
|
'lirc: for lirc plugin'
|
|
'libavc1394: for devices using the 1394ta AV/C'
|
|
'libdc1394: for IEEE 1394 plugin'
|
|
'kdelibs: KDE Solid hardware integration'
|
|
'libva-vdpau-driver: vdpau back-end for nvidia'
|
|
'libva-intel-driver: back-end for intel cards'
|
|
'libbluray: for Blu-Ray support'
|
|
'flac: for Free Lossless Audio Codec plugin'
|
|
'portaudio: for portaudio support'
|
|
'twolame: for TwoLAME mpeg2 encoder plugin'
|
|
'projectm: for ProjectM visualisation plugin'
|
|
'libcaca: for colored ASCII art video output'
|
|
'libgme: for libgme plugin'
|
|
'librsvg: for SVG plugin'
|
|
'libgoom2: for libgoom plugin'
|
|
'vcdimager: navigate VCD with libvcdinfo'
|
|
'aalib: for ASCII art plugin'
|
|
'libmtp: for MTP devices support'
|
|
'smbclient: for SMB access plugin'
|
|
'libcdio: for audio CD playback support'
|
|
'ttf-freefont: for subtitle font '
|
|
'ttf-dejavu: for subtitle font'
|
|
'opus: for opus support'
|
|
'libssh2: for sftp support'
|
|
'lua-socket: for http interface')
|
|
backup=('usr/share/vlc/lua/http/.hosts'
|
|
'usr/share/vlc/lua/http/dialogs/.hosts')
|
|
categories=('multimedia')
|
|
options=('!emptydirs')
|
|
install="vlc.install"
|
|
source=("http://download.videolan.org/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.xz"{,.asc}
|
|
lua53_compat.patch)
|
|
sha1sums=('9e50c246242cd1dd94a8534b9be11c13104bb76d'
|
|
'SKIP'
|
|
'5d7dba23756ff577a90b8631b187fbeac1f94e17')
|
|
validpgpkeys=('65F7C6B4206BD057A7EB73787180713BE58D1ADC') # VideoLAN Release Signing Key
|
|
screenshot='http://images1.videolan.org/vlc/screenshots/0.9.2/screenshot-kde4.jpg'
|
|
|
|
prepare() {
|
|
cd ${pkgname}-${pkgver}
|
|
sed -i -e 's:truetype/ttf-dejavu:TTF:g' modules/visualization/projectm.cpp
|
|
patch -Np1 < "${srcdir}/lua53_compat.patch"
|
|
}
|
|
|
|
build() {
|
|
cd ${pkgname}-${pkgver}
|
|
|
|
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)"
|
|
|
|
./configure --prefix=/usr \
|
|
--sysconfdir=/etc \
|
|
--disable-rpath \
|
|
--enable-faad \
|
|
--enable-nls \
|
|
--enable-lirc \
|
|
--enable-ncurses \
|
|
--enable-realrtsp \
|
|
--enable-aa \
|
|
--enable-upnp \
|
|
--enable-opus \
|
|
--enable-sftp \
|
|
--enable-qt \
|
|
RCC=/usr/bin/rcc-qt5
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd "${pkgname}-${pkgver}"
|
|
|
|
make DESTDIR="${pkgdir}" install
|
|
|
|
for res in 16 32 48 128; do
|
|
install -Dm 644 "${srcdir}/vlc-${pkgver}/share/icons/${res}x${res}/vlc.png" \
|
|
"${pkgdir}/usr/share/icons/hicolor/${res}x${res}/apps/vlc.png"
|
|
done
|
|
}
|
|
|
|
# vim: ts=2 sw=2 et:
|