summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: d673f78c9a3d94ed52e9cf14f850da92b7f94616 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
# Maintainer: Gustavo Alvarez <sl1pkn07@gmail.com>
# Contributor: Jekyll Wu <adaptee at gmail dot com>
# Contributor: Xavion <Xavion (dot) 0 (at) Gmail (dot) com>
# Maintainer: Gustavo Alvarez <sl1pkn07@gmail.com>
# Contributor: Rick W. Chen <stuffcorpse@archlinux.us>
# Contributor: Pierre Schmitz <pierre@archlinux.de>
# Contributor: Marek Kubica <marek@xivilization.net>

pkgname=phonon-qt4-mplayer-git
pkgver=20120714.7217499
pkgrel=1
pkgdesc='Phonon Mplayer backend for Qt4. (GIT version)'
arch=('x86_64')
url='https://projects.kde.org/projects/unmaintained/phonon-mplayer'
license=('LGPL')
depends=(
  'mplayer'
  'phonon-qt4'
)
makedepends=(
  'cmake'
  'automoc4'
  'git'
)
provides=(
  'phonon-qt4-backend'
  'phonon-qt4-mplayer'
)
conflicts=('phonon-qt4-mplayer')
replaces=('phonon-mplayer-git')
source=(
  'git+https://invent.kde.org/unmaintained/phonon-mplayer.git'
  'fix_find_config.patch'
  'CMakeLists.txt.patch'
)
sha256sums=(
  'SKIP'
  'ee6a0a79b995b4bd5bf086624b89b4467411647e9ddeefcd6e1a81d70b318655'
  'fd6379172562065acb670e497ade517015f71829abf65cfd8424fe428e405df3'
)

pkgver() {
  cd phonon-mplayer
  echo "$(git log -1 --format="%cd" --date=short | tr -d '-').$(git log -1 --format="%h")"
}

prepare() {
  patch -d phonon-mplayer -Np1 -i ../fix_find_config.patch
  patch -d phonon-mplayer -Np0 -i ../CMakeLists.txt.patch
}

build() {
  CXXFLAGS+=" -fPIC"
  cmake -S phonon-mplayer -B build \
    -DCMAKE_BUILD_TYPE=Release \
    -DCMAKE_INSTALL_PREFIX=/usr \
    -DCMAKE_SKIP_RPATH=ON

  cmake --build build
}


package () {
  DESTDIR="${pkgdir}" cmake --install build
}