summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: f94a7e05aeb67669379fb77ca4e37fb0ba6de61d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# Contributor: Sebastian Wolf <fatmike303 at googlemail dot com>
pkgname=yape
pkgver=0.70.2
pkgrel=1
_projectname=yapesdl
_git_hash=7b2c2a123daf
pkgdesc='A decent multiplatform Commodore plus/4 and 64 emulator written in C++ using the SDL 2.0 media API'
arch=('i686' 'x86_64')
url='http://yapesdl.codeplex.com'
license=('GPL')
depends=('sdl2')
source=(${_projectname}::git+https://git01.codeplex.com/${_projectname})
md5sums=(SKIP)

build() {
    cd ${srcdir}/${_projectname}
	git reset --hard ${_git_hash}
	make
}

package() {
	install -Dm755 ${srcdir}/${_projectname}/${_projectname} ${pkgdir}/usr/bin/${pkgname}
}