PKGBUILDs/community/mplayer2/PKGBUILD

70 lines
2.3 KiB
Bash
Raw Normal View History

2012-12-09 21:04:22 +00:00
# $Id$
2012-04-25 23:14:41 +00:00
# Maintainer: Bartłomiej Piotrowski <nospam@bpiotrowski.pl>
# Contributor: Martin Panter <vadmium+aur@gmail.com>
# Contributor: Stéphane Gaudreault <stephane@archlinux.org>
# ALARM: Kevin Mihelich <kevin@archlinuxarm.org>
# - removed --enable-runtime-cpudetection - not supported on ARM
pkgname=mplayer2
2013-06-09 17:46:10 +00:00
pkgver=20130428
2013-08-01 12:54:14 +00:00
pkgrel=4
2012-11-18 08:00:46 +00:00
pkgdesc='Advanced general-purpose media player. A fork of the original MPlayer project'
2012-04-25 23:14:41 +00:00
arch=('i686' 'x86_64')
license=('GPL')
2013-06-09 17:46:10 +00:00
url='http://www.mplayer2.org/'
2012-04-25 23:14:41 +00:00
install=$pkgname.install
2013-02-20 21:47:59 +00:00
depends=('a52dec' 'aalib' 'cdparanoia' 'desktop-file-utils' 'enca' 'faad2' 'ffmpeg'
'fontconfig' 'freetype2' 'jack' 'ladspa' 'lame' 'libass' 'libbluray'
'libcaca' 'libcdio-paranoia' 'libdca' 'libdvdcss' 'libdvdnav' 'libdvdread'
'libgl' 'libjpeg' 'libmad' 'libpulse' 'libquvi' 'libtheora' 'libvdpau'
'libxinerama' 'libxss' 'libxv' 'libxxf86dga' 'libxxf86vm' 'lirc-utils'
2013-08-01 12:54:14 +00:00
'mpg123' 'ncurses' 'sdl' 'ttf-dejavu' 'giflib')
2013-06-09 17:46:10 +00:00
makedepends=('mesa' 'mesa-libgl' 'unzip' 'yasm' 'python' 'python-docutils' 'git')
2012-04-25 23:14:41 +00:00
backup=('etc/mplayer/codecs.conf' 'etc/mplayer/input.conf')
provides=('mplayer')
conflicts=('mplayer')
options=(!emptydirs)
2013-08-01 12:54:14 +00:00
source=(git://git.mplayer2.org/mplayer2.git#commit=6c87a981baa
giflib-5.0.patch)
sha256sums=('SKIP'
'20706ebb35e7c1935ae263c48d623a878db3b634ca575927913f56d9ce059c7a')
pkgver() {
cd $pkgname
git log -1 --format="%cd" --date=short | sed 's|-||g'
}
2012-04-25 23:14:41 +00:00
2013-05-06 23:36:12 +00:00
prepare() {
2013-06-09 17:46:10 +00:00
cd $pkgname
2012-11-18 08:00:46 +00:00
sed 's/gmplayer/mplayer/g' -i etc/mplayer.desktop
find -type f -exec sed -e 's/python3/python/' -i {} \;
2013-08-01 12:54:14 +00:00
patch -Np1 -i ../giflib-5.0.patch
2013-05-06 23:36:12 +00:00
}
build() {
2013-06-09 17:46:10 +00:00
cd $pkgname
2012-11-18 08:00:46 +00:00
./configure --prefix=/usr --confdir=/etc/mplayer \
--enable-translation --language=all \
--enable-joystick \
2013-08-01 12:54:14 +00:00
--enable-gif \
2012-11-18 08:00:46 +00:00
--disable-speex \
--disable-openal \
--disable-libdv \
--disable-musepack
make
2012-04-25 23:14:41 +00:00
}
package() {
2013-06-09 17:46:10 +00:00
cd $pkgname
2012-11-18 08:00:46 +00:00
make DESTDIR=$pkgdir install
2012-04-25 23:14:41 +00:00
2012-11-18 08:00:46 +00:00
install -Dm644 etc/{codecs.conf,input.conf,example.conf} $pkgdir/etc/mplayer/
install -dm755 $pkgdir/usr/share/mplayer/
ln -s /usr/share/fonts/TTF/DejaVuSans.ttf $pkgdir/usr/share/mplayer/subfont.ttf
2012-04-25 23:14:41 +00:00
2012-11-18 08:00:46 +00:00
install -dm755 $pkgdir/usr/share/applications/
install -m 644 etc/mplayer.desktop $pkgdir/usr/share/applications/
2012-04-25 23:14:41 +00:00
}