summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 8f73f2ee285d3c60a2f16f9e2b49094be25ce2c0 (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: Jacob Emmert-Aronson <jacob at mlaronson dot com>
# Contributor: Rene Schoebel <schoebel.r at gmail dot com>
# Contributor: ZekeSulastin <zekesulastin@gmail.com>
# Contributor: Mr_Robotic_Evil <mr.robotic.evil@googlemail.com>
# Contributor: Lone_Wolf <lonewolf@xs4all.nl>

# This PKGBUILD only generates the engine binary.
# The retail Freespace 2 data is required to play the
# original game and most mods.  You can use a non-AUR/pacman'd
# copy, but you'll be on your own as far as running the game
# and mods are concerned.
# Check the AUR package 'fs2_open-data' for details.

pkgname=fs2_open
pkgver=3.7.2
_pkgver=3_7_2 # Upstream's url/dirs ...
pkgrel=1
epoch=1
pkgdesc="An enhancement of the FreeSpace 2 engine"
url="http://scp.indiegames.us"
arch=('i686' 'x86_64')
license=('custom:fs2_open')
depends=('fs2_open-data' 'glu' 'libjpeg' 'libpng' 'libtheora'
         'libvorbis' 'lua51' 'jansson' 'openal' 'sdl')
optdepends=('fs2_open-mediavps: extensive audiovisual enhancements')
install=$pkgname.install
source=(http://swc.fs2downloads.com/builds/fs2_open_${_pkgver}_src.tgz
        'fs2_open'
        'fs2_open.desktop'
        'increase_joy_buttons_fixed.patch'
        'options')
sha256sums=('3e266eb84a4c289e21cb08f3bde8e6e6e0d1bf97953e8cc06db1a179cc127ea2'
            'c978c91ced574a0904a883d41c72248796e0cf50a0c5e06bc5f890d92bb244c1'
            'cac8914fb96eb4f09d8dec0005ccb3626499ab9f3f4c5f64c11bd8d2e913e372'
            '015b57bafd327e7b549a09e0a03619fabdc7be63afe88860fbe0f4114dc81731'
            'c593dacd19705f1aaf23170d7b65b4621945200d3a496e256f77e3f1f0279741')

prepare() {
  cd "$srcdir/${pkgname}_${_pkgver}"

  # Increases hard limit of joystick buttons for better use with HOTAS etc.
  patch -p1 -i "$srcdir/increase_joy_buttons_fixed.patch"
}

build() {
  cd "$srcdir/${pkgname}_${_pkgver}"

  # Add --enable-debug to make a debug build.  These are NOT meant for
  # general play; only make a debug build if generating logs/bug-reports.
  env LDFLAGS="-l:liblua.so.5.1 $LDFLAGS" \
      CXXFLAGS="-I/usr/include/lua5.1 $CXXFLAGS" \
      ./autogen.sh --enable-speech
  make
}

package() {
  cd "$srcdir/${pkgname}_${_pkgver}"

  _pkgver=${pkgver//~rc/_RC}
  install -D -m644 COPYING "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
  install -D -m644 ../fs2_open.desktop "$pkgdir/usr/share/applications/fs2_open.desktop"
  install -D -m644 ../options "$pkgdir/usr/share/$pkgname/options"
  install -D -m755 code/fs2_open_$_pkgver "$pkgdir/opt/$pkgname/fs2_open_$_pkgver"
  install -D -m755 "$srcdir/fs2_open" "$pkgdir/usr/bin/fs2_open"
}