summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 918970a471ab653c9d1f5be637a9605a96bfc896 (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
# Maintainer: Dan Beste <dan.ray.beste@gmail.com>
# Previously:
# Maintainer: Frederic Bezies <fredbezies at gmail dot com>

# Contributor: Ainola
# Contributor: Ner0
# Contributor: quantax

pkgname='ags-git'
_pkgname='ags'
pkgver=3.4.1.3.r7.gb4199b73
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=("${_pkgname}")
provides=("${_pkgname}")
source=('git+https://github.com/adventuregamestudio/ags.git')
sha256sums=('SKIP')

pkgver() {
    cd "${_pkgname}"

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

build() {
    cd "${_pkgname}"

    make --directory=Engine
}

package() {
    cd "${_pkgname}"

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

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