PKGBUILDs/extra/mplayer/PKGBUILD

121 lines
3.9 KiB
Bash
Raw Normal View History

2013-11-02 08:38:44 +00:00
# $Id$
2014-06-14 20:04:39 +00:00
# Maintainer: Ionut Biru <ibiru@archlinux.org>
2015-03-12 11:42:42 +00:00
# Contributor: Bartłomiej Piotrowski <bpiotrowski@archlinux.org>
2012-03-22 03:21:57 +00:00
# Contributor: Hugo Doria <hugo@archlinux.org>
2012-07-09 21:23:30 +00:00
# ALARM: Kevin Mihelich <kevin@archlinuxarm.org>
2012-03-22 03:21:57 +00:00
# - remove --enable-runtime-cpudetection from configure
2012-03-22 03:34:22 +00:00
# - --enable-armv5te to use v5 edsp (fails autodetect for v5)
2012-03-22 03:21:57 +00:00
pkgbase=mplayer
pkgname=('mplayer' 'mencoder')
2016-05-07 00:10:53 +00:00
pkgver=37857
pkgrel=1
2012-03-22 03:21:57 +00:00
arch=('i686' 'x86_64')
2013-11-02 08:38:44 +00:00
makedepends=(
2014-03-29 16:10:32 +00:00
'libxxf86dga' 'libxxf86vm' 'libmad' 'libxinerama' 'sdl' 'lame' 'libtheora'
'xvidcore' 'libmng' 'libxss' 'libgl' 'smbclient' 'aalib' 'jack' 'libcaca'
2015-03-12 11:42:42 +00:00
'faac' 'faad2' 'lirc' 'libxvmc' 'enca' 'libvdpau' 'opencore-amr'
2014-03-29 16:10:32 +00:00
'libdca' 'a52dec' 'schroedinger' 'libvpx' 'libpulse' 'fribidi' 'unzip' 'mesa'
'live-media' 'yasm' 'git' 'fontconfig' 'mpg123' 'ladspa' 'libass' 'libbluray'
2015-01-11 23:18:20 +00:00
'libcdio-paranoia' 'opus' 'subversion' 'x264' 'libx264' 'rtmpdump' 'gnutls'
2016-05-07 00:10:53 +00:00
'gsm' 'libdvdcss' 'libdvdread' 'libdvdnav' 'ffmpeg'
2014-03-29 16:10:32 +00:00
)
2012-03-22 03:21:57 +00:00
license=('GPL')
2013-11-02 08:38:44 +00:00
url='http://www.mplayerhq.hu/'
2013-05-27 05:15:29 +00:00
options=('!buildflags' '!emptydirs')
2014-06-14 20:04:39 +00:00
source=($pkgbase-$pkgver::svn://svn.mplayerhq.hu/mplayer/trunk#revision=$pkgver
2013-05-27 05:15:29 +00:00
mplayer.desktop
2014-06-14 20:04:39 +00:00
include-samba-4.0.patch
2015-11-12 00:41:49 +00:00
ffmpeg-libvpxenc-remove-some-unused-ctrl-id-mappings.patch
2016-05-07 00:25:07 +00:00
revert-icl-fixes.patch)
2014-06-14 20:04:39 +00:00
md5sums=('SKIP'
2013-11-02 08:38:44 +00:00
'62f44a58f072b2b1a3c3d3e4976d64b3'
2014-06-14 20:04:39 +00:00
'868a92bdef148df7f38bfa992b26ce9d'
2015-11-12 00:41:49 +00:00
'71be9bcd297cb9ce833bbc5d425c0470'
2016-05-07 00:25:07 +00:00
'3579402002b7302fdf2d146639333efd')
2014-06-14 20:04:39 +00:00
2016-05-07 00:10:53 +00:00
#pkgver() {
# cd $pkgbase-$pkgver
# svnversion
#}
2012-03-22 03:21:57 +00:00
2013-05-15 01:16:27 +00:00
prepare() {
2014-03-29 16:10:32 +00:00
cd $pkgbase-$pkgver
2016-05-07 00:10:53 +00:00
# mv ../ffmpeg-*/ ./ffmpeg
2012-03-22 03:21:57 +00:00
2015-11-12 00:41:49 +00:00
patch -Np1 -i ../include-samba-4.0.patch
2014-06-14 20:04:39 +00:00
patch -Np0 -i ../revert-icl-fixes.patch
2016-05-07 00:10:53 +00:00
# patch -d ffmpeg -Np1 <../ffmpeg-libvpxenc-remove-some-unused-ctrl-id-mappings.patch
2014-03-29 16:10:32 +00:00
2014-06-14 20:04:39 +00:00
./version.sh
2013-05-15 01:16:27 +00:00
}
build() {
2014-03-29 16:10:32 +00:00
cd $pkgbase-$pkgver
2013-05-15 01:16:27 +00:00
2014-03-29 16:10:32 +00:00
./configure --prefix=/usr \
--enable-armv5te \
--disable-gui \
--disable-arts \
--disable-liblzo \
--disable-speex \
--disable-openal \
--disable-libdv \
--disable-musepack \
--disable-esd \
--disable-mga \
--disable-ass-internal \
--disable-cdparanoia \
2016-05-07 00:10:53 +00:00
--disable-ffmpeg_a \
2014-03-29 16:10:32 +00:00
--enable-xvmc \
--enable-radio \
--enable-radio-capture \
--enable-smb \
--language=all \
2016-05-07 00:25:07 +00:00
--confdir=/etc/mplayer
2014-03-29 16:10:32 +00:00
[[ "$CARCH" = "i686" ]] && sed 's|-march=i486|-march=i686|g' -i config.mak
2012-03-22 03:21:57 +00:00
2014-03-29 16:10:32 +00:00
make
2012-03-22 03:21:57 +00:00
}
package_mplayer() {
2014-03-29 16:10:32 +00:00
pkgdesc='Media player for Linux'
backup=('etc/mplayer/codecs.conf' 'etc/mplayer/input.conf')
depends=(
'desktop-file-utils' 'ttf-font' 'enca' 'libxss' 'a52dec' 'libvpx'
2015-03-12 11:42:42 +00:00
'lirc' 'libx264' 'libmng' 'libdca' 'aalib' 'lame' 'fontconfig'
2014-03-29 16:10:32 +00:00
'libgl' 'libxinerama' 'libvdpau' 'libpulse' 'smbclient' 'xvidcore'
'opencore-amr' 'jack' 'libmad' 'sdl' 'libtheora' 'libcaca' 'libxxf86dga'
'fribidi' 'libjpeg' 'faac' 'faad2' 'libxvmc' 'schroedinger' 'mpg123'
2015-01-11 23:18:20 +00:00
'libass' 'libxxf86vm' 'libbluray' 'libcdio-paranoia' 'opus' 'rtmpdump'
2016-05-07 00:10:53 +00:00
'gsm' 'gnutls' 'libdvdnav' 'ffmpeg'
2014-03-29 16:10:32 +00:00
)
2012-03-22 03:21:57 +00:00
2014-03-29 16:10:32 +00:00
cd $pkgbase-$pkgver
make DESTDIR="$pkgdir" install-mplayer install-mplayer-man
2013-11-02 08:38:44 +00:00
2014-03-29 16:10:32 +00:00
install -Dm644 etc/{codecs.conf,input.conf,example.conf} \
"$pkgdir/etc/mplayer/"
2013-11-02 08:38:44 +00:00
2014-03-29 16:10:32 +00:00
# desktop file (FS#14770)
install -Dm644 ../mplayer.desktop \
"$pkgdir"/usr/share/applications/mplayer.desktop
install -Dm644 etc/mplayer256x256.png \
"$pkgdir"/usr/share/pixmaps/mplayer.png
2012-03-22 03:21:57 +00:00
}
package_mencoder() {
2014-03-29 16:10:32 +00:00
pkgdesc='Free command line video decoding, encoding and filtering tool'
depends=(
2014-08-07 16:27:22 +00:00
'enca' 'a52dec' 'libvpx' 'libx264' 'libmng' 'libdca' 'bzip2' 'lame'
2014-03-29 16:10:32 +00:00
'alsa-lib' 'fontconfig' 'giflib' 'libpng' 'smbclient' 'xvidcore'
'opencore-amr' 'libmad' 'libtheora' 'fribidi' 'libjpeg' 'faac' 'faad2'
'schroedinger' 'mpg123' 'libass' 'libbluray' 'libcdio-paranoia'
2016-05-07 00:10:53 +00:00
'libvorbis' 'opus' 'rtmpdump' 'gsm' 'libdvdnav' 'ffmpeg'
2014-03-29 16:10:32 +00:00
)
2012-03-22 03:21:57 +00:00
2014-03-29 16:10:32 +00:00
make -C $pkgbase-$pkgver DESTDIR="$pkgdir" install-mencoder install-mencoder-man
find "$pkgdir"/usr/share/man -name mplayer.1 -exec rename mplayer.1 mencoder.1 {} +
2012-03-22 03:21:57 +00:00
}