summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: f787b09601bd7e60672104682aa04a6ddaf0561e (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
# Maintainer: Maxime Gauduin <alucryd@archlinux.org>

pkgname=libretro-dolphin-git
pkgver=r29735.ec90b9bfcd
pkgrel=1
pkgdesc='Nintendo GC/Wii core'
arch=(x86_64)
url=https://github.com/libretro/dolphin
license=(GPL2)
groups=(libretro-unstable)
depends=(
  libretro-core-info
  libudev.so
  libx11
  libxi
  libxrandr
  zlib
)
makedepends=(
  cmake
  git
  mesa
)
provides=(libretro-dolphin)
conflicts=(libretro-dolphin)
source=(libretro-dolphin::git+https://github.com/libretro/dolphin.git)
sha256sums=(SKIP)

pkgver() {
  cd libretro-dolphin

  echo "r$(git rev-list --count HEAD).$(git rev-parse --short HEAD)"
}

prepare() {
  if [[ -d build ]]; then
    rm -rf build
  fi
  mkdir build
}

build() {
  cd build

  cmake ../libretro-dolphin \
    -DCMAKE_BUILD_TYPE=Release \
    -DCMAKE_INSTALL_PREFIX=/usr \
    -DLIBRETRO=ON \
    -DLIBRETRO_STATIC=1
  make
}

package() {
  install -Dm 644 build/dolphin_libretro.so -t "${pkgdir}"/usr/lib/libretro/
}

# vim: ts=2 sw=2 et: