summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 6049e8056752cd642206487be7d3b844cd1ec9ca (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
pkgname=dobiestation
pkgrel=1
pkgver=e4b4313be82ca341c862308ebe466b473d5acef9
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)

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
}