summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 3ba259eb4d539cbfb5cbfc5a40e740965439040a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# Maintainer: Frédéric Mangano-Tarumi <fmang+aur mg0.fr>

pkgname='oshu'
pkgver=1.4.0
pkgrel=1
pkgdesc='Lightweight port of the osu! rhythm game'
url='https://github.com/fmang/oshu/'
arch=('i686' 'x86_64')
license=('GPL3')
depends=('sdl2' 'sdl2_image' 'ffmpeg')
source=("https://www.mg0.fr/oshu/$pkgname-$pkgver.tar.gz")
sha256sums=('b82137dc172afc7c9d1021a248fa314cc14445859fc1a77c5bc9beb497692249')

build() {
	cd "${srcdir}/${pkgname}-${pkgver}"
	./configure --prefix=/usr
	make
}

package() {
	cd "${srcdir}/${pkgname}-${pkgver}"
	make DESTDIR="${pkgdir}" install
}