blob: 39f6bf94fd1c78bf63270687e418ef92daba992a (
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
|
# Maintainer: Graham Edgecombe <graham@grahamedgecombe.com>
pkgname=openrct2-git
pkgver=r2840.796fb81
pkgrel=1
pkgdesc="Open source clone of RollerCoaster Tycoon 2"
arch=('i686' 'x86_64')
url="https://openrct2.com"
license=('GPL3')
depends=('wine' 'mingw-w64-sdl2' 'gtk-update-icon-cache' 'desktop-file-utils')
makedepends=('git' 'cmake' 'mingw-w64-gcc')
options=('!buildflags')
install=openrct2.install
source=("$pkgname"::'git://github.com/IntelOrca/OpenRCT2.git#branch=develop'
'openrct2'
'openrct2.desktop'
'mingw-w64-workaround.patch')
md5sums=('SKIP'
'b750eaf997a27e981232b21a68fa868e'
'035a407b940492c584c72f4f59f1bd69'
'6feb2932690f40a8bac895ac4cf81a1a')
pkgver() {
cd "$srcdir/$pkgname"
printf "r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)"
}
prepare() {
cd "$srcdir/$pkgname"
patch -p0 < "$srcdir/mingw-w64-workaround.patch"
}
build() {
cd "$srcdir/$pkgname"
cmake -DCMAKE_TOOLCHAIN_FILE=CMakeLists_mingw.txt -DCMAKE_BUILD_TYPE=Debug .
make
}
package() {
cd "$srcdir/$pkgname"
# Standard OpenRCT2 distribution files.
install -Dm644 openrct2.dll "$pkgdir/usr/share/openrct2/openrct2.dll"
install -Dm755 openrct2.exe "$pkgdir/usr/share/openrct2/openrct2.exe"
install -dm755 "$pkgdir/usr/share/openrct2/data/language"
install -m644 data/language/* "$pkgdir/usr/share/openrct2/data/language/"
# ArchLinux-specific stuff (launcher, .desktop file and icon).
install -Dm755 "$srcdir/openrct2" "$pkgdir/usr/bin/openrct2"
install -Dm644 "$srcdir/openrct2.desktop" "$pkgdir/usr/share/applications/openrct2.desktop"
install -Dm644 resources/logo/icon_flag.svg "$pkgdir/usr/share/icons/hicolor/scalable/apps/openrct2.svg"
# For Wine to find the SDL2.dll and libwinpthread-1.dll files they need to be
# in the same directory as openrct2.exe, so we symlink them in place. We don't
# use $CARCH here because on x86_64 OpenRCT2 is compiled with -m32,
# therefore we always want to use the i686 DLLs. OpenRCT2 relies on
# Wine's WoW64 support to actually run on x86_64 machines.
ln -s /usr/i686-w64-mingw32/bin/SDL2.dll "$pkgdir/usr/share/openrct2"
ln -s /usr/i686-w64-mingw32/bin/libwinpthread-1.dll "$pkgdir/usr/share/openrct2"
}
|