summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 51d4f34e0a8f57fc33ae284cac0e69a040337a01 (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
69
# Maintainer: Dan Beste <dan.ray.beste@gmail.com>
# Contributor: Ainola
# Contributor: Ner0
# Contributor: quantax

# Previously:
# Maintainer: Frederic Bezies <fredbezies at gmail dot com>

pkgname='ags-git'
_pkgname='ags'
pkgver=3.4.1.1.r13.g6053e954
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'
    'libogg'
    'libtheora'
    'libvorbis'
)
makedepends=(
    'git'
)
optdepends=(
    'wine: For non-native games'
)
conflicts=(
    'ags'
)
source=(
    'git+https://github.com/adventuregamestudio/ags.git'
)
sha256sums=(
    'SKIP'
)

pkgver() {
    cd "${srcdir}/${_pkgname}" || exit 1

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

build() {
    cd "${srcdir}/${_pkgname}" || exit 1

    make --directory=Engine
}

package() {
    install -Dm755                                    \
        "${srcdir}/${_pkgname}/Engine/${_pkgname}"    \
        "${pkgdir}/usr/bin/${_pkgname}"

    install -Dm644                            \
        "${srcdir}/${_pkgname}/License.txt"   \
        "${pkgdir}/usr/share/licenses/$pkgname/LICENSE"
}