summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 45564ab61f952a435cda93797fc6a931d5086bf5 (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
66
67
68
# Maintainer: Dan Beste <dan.ray.beste@gmail.com>
# Contributor: Frederic Bezies <fredbezies at gmail dot com>
# Contributor: Ainola
# Contributor: Ner0
# Contributor: quantax

pkgname='ags-git'
_pkgname='ags'
pkgver=3.4.1.6.r56.g234c69ef
pkgrel=1
pkgdesc='Adventure Game Studio, a development tool that is primarily used to create graphical adventure games'
arch=('i686' 'x86_64')
url='http://www.adventuregamestudio.co.uk/'
license=('custom: Artistic 2.0')
depends=('allegro' 'dumb' 'freetype2' 'libogg' 'libtheora' 'libvorbis')
makedepends=('git')
optdepends=('wine: For non-native games')
conflicts=("${_pkgname}")
provides=("${_pkgname}")
source=(
  'git+https://github.com/adventuregamestudio/ags.git'
  'agslua::git+https://github.com/duncanc/Lua-for-AGS.git'
  'git+https://github.com/google/googletest.git'
)
sha256sums=('SKIP' 'SKIP' 'SKIP')

pkgver() {
  cd "${_pkgname}"

  git describe --long --tags           \
    | sed 's/\([^-]*-g\)/r\1/;s/-/./g' \
    | sed 's/v.//'
}

prepare() {
  cd "${_pkgname}"

  local submodules=(
    'Plugins/agslua/agslua'
    'Common/libsrc/googletest'
  )

  for module in "${submodules[@]}"; do
    git submodule init "${module}"
    git config "submodule.${module}.url" "${srcdir}/${module}"
    git submodule update "${module}"
  done
}

build() {
  cd "${_pkgname}"

  make --directory=Engine
}

package() {
  cd "${_pkgname}"

  install -D -m 755      \
    "Engine/${_pkgname}" \
    "${pkgdir}/usr/bin/${_pkgname}"

  install -D -m 644 \
    "License.txt"   \
    "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
}

# vim: expandtab shiftwidth=2 tabstop=2