summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 26af09eb60cb6f0606d541d0e0367142ad85be51 (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
pkgname=emulator-8080-git
pkgver=0.2.1
pkgrel=1
pkgdesc="Intel 8080 Emulator"
arch=('x86_64')
url="https://gitlab.com/azizyus/emulator-8080"
license=('MIT')
makedepends=('git')
depends=('glut' 'glu')
source=('git+https://gitlab.com/azizyus/emulator-8080.git')
md5sums=('SKIP')

pkgver() {
  cd emulator-8080
  git describe --long --tags  | cut -d- -f1
}

prepare() {
	
mkdir -p build

}

build() {

cd build
cmake ../emulator-8080
make


}

package() {


make -C build DESTDIR="${pkgdir}/usr" install

}