summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: f6dbbdbfca441423699c04ce1dee96ae99f124f8 (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
pkgname=dobiestation
pkgrel=1
pkgver=r1579.febc810
pkgdesc='A Dog based emulator for the ps2'
arch=(x86_64)
url=https://github.com/PSI-Rockin/DobieStation/
license=('GPL')
groups=()
depends=(qt5-base)
makedepends=(
gcc
cmake
git
)
provides=(dobiestation)
conflicts=(dobiestation)
replaces=(dobiestation)

pkgver()
{
  cd "DobieStation"
  (   
    set -o pipefail
    git describe --long 2>/dev/null | sed 's/\([^-]*-g\)/r\1/;s/-/./g' ||
    printf "r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)"
  )
}


prepare()
{
    git clone https://github.com/PSI-Rockin/DobieStation.git
    cd DobieStation
    mkdir build && cd build
    cmake .. -DCMAKE_BUILD_TYPE=RelWithDebInfo
}

build() {
    cd DobieStation && cd build
    make 
}

package() {
    cd DobieStation && cd build
    sudo make install
}