PKGBUILDs/extra/mplayer/PKGBUILD

95 lines
3.6 KiB
Bash
Raw Normal View History

2017-01-18 20:32:54 +00:00
# Maintainer: Levente Polyak <anthraxx@archlinux.org>
# Contributor: 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')
2018-05-12 16:39:14 +00:00
pkgver=38101
2018-08-16 12:22:19 +00:00
pkgrel=2
2017-01-18 20:32:54 +00:00
pkgdesc='Media player for Linux'
url='http://www.mplayerhq.hu/'
2018-01-11 13:39:05 +00:00
arch=('x86_64')
2012-03-22 03:21:57 +00:00
license=('GPL')
2017-01-18 20:32:54 +00:00
makedepends=('libxxf86dga' 'libmad' 'libxinerama' 'libmng' 'libxss' 'smbclient' 'aalib' 'jack'
'libcaca' 'faac' 'faad2' 'lirc' 'libxvmc' 'enca' 'libdca' 'a52dec' 'libvpx' 'unzip'
'mesa' 'live-media' 'yasm' 'git' 'mpg123' 'ladspa' 'libcdio-paranoia' 'subversion'
2018-08-16 12:22:19 +00:00
'x264' 'rtmpdump' 'libdvdcss' 'libdvdread' 'libdvdnav' 'ffmpeg')
2018-01-24 02:20:59 +00:00
options=('!emptydirs')
2017-10-24 23:45:24 +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
2016-05-07 00:25:07 +00:00
revert-icl-fixes.patch)
2017-01-18 20:32:54 +00:00
sha512sums=('SKIP'
'd3c5cbf0035279c6f307e4e225473d7b77f9b56566537a26aa694e68446b9e3240333296da627ad5af83b04cc8f476d1a3f8c05e4cf81cd6e77153feb4ed74bc'
'9debb8c58b996f6c716c22c86c720bf9dc49b4ee9b76c57519f791667ae1de2cc6f5add878fbf4ac02c6b6fd1865e1bcfa6105e75de4bf7ec596c338ed0cae99'
'0cae0b26d3d97fd4c962962c43a481de20335369cbca406cadfc9bda1a0608b32f5374e76c477cb9a85bda83a568a1ed17126df224ae61579d0a402c1824aea8')
2012-03-22 03:21:57 +00:00
2013-05-15 01:16:27 +00:00
prepare() {
2017-01-18 20:32:54 +00:00
cd ${pkgbase}-${pkgver}
patch -p1 < "../include-samba-4.0.patch"
patch -p0 < "../revert-icl-fixes.patch"
2014-06-14 20:04:39 +00:00
./version.sh
2013-05-15 01:16:27 +00:00
}
build() {
2017-01-18 20:32:54 +00:00
cd ${pkgbase}-${pkgver}
2018-01-24 02:20:59 +00:00
export LDFLAGS="${LDFLAGS/,O1/}"
export LDFLAGS="${LDFLAGS/,--sort-common/}"
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 \
2018-01-24 02:20:59 +00:00
--confdir=/etc/mplayer \
--extra-cflags="${CFLAGS}" \
--extra-ldflags="${LDFLAGS}"
2017-01-18 20:32:54 +00:00
[[ "${CARCH}" = "i686" ]] && sed 's|-march=i486|-march=i686|g' -i config.mak
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')
2017-01-18 20:32:54 +00:00
depends=('desktop-file-utils' 'ttf-font' 'enca' 'libxss' 'a52dec' 'libvpx'
2018-08-16 12:22:19 +00:00
'lirc' 'x264' 'libmng' 'libdca' 'aalib' 'libxinerama' 'smbclient'
2017-01-18 20:32:54 +00:00
'jack' 'libmad' 'libcaca' 'libxxf86dga' 'faac' 'faad2' 'libxvmc' 'mpg123'
'libcdio-paranoia' 'rtmpdump' 'libdvdnav' 'ffmpeg')
2012-03-22 03:21:57 +00:00
2017-01-18 20:32:54 +00:00
cd ${pkgbase}-${pkgver}
make DESTDIR="${pkgdir}" install-mplayer install-mplayer-man
2013-11-02 08:38:44 +00:00
2017-01-18 20:32:54 +00:00
install -Dm 644 etc/{codecs.conf,input.conf,example.conf} "${pkgdir}/etc/mplayer"
install -Dm 644 "${srcdir}/mplayer.desktop" -t "${pkgdir}/usr/share/applications"
install -Dm 644 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'
2018-08-16 12:22:19 +00:00
depends=('enca' 'a52dec' 'libvpx' 'x264' 'libmng' 'libdca' 'smbclient' 'libmad'
2017-01-18 20:32:54 +00:00
'faac' 'faad2' 'mpg123' 'libcdio-paranoia' 'rtmpdump' 'libdvdnav' 'ffmpeg')
2012-03-22 03:21:57 +00:00
2017-01-18 20:32:54 +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
}
2017-01-18 20:32:54 +00:00
# vim: ts=2 sw=2 et: