blob: 88e210a4a9ccabae2f58adadcae258c963d0d1ec (
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
|
# Maintainer: Sebastian Krzyszkowiak <dos@dosowisko.net>
pkgname=radioedit
pkgver=0.1.4
pkgrel=1
pkgdesc="A simple game where you fight evil record label representatives who want to radio edit your amazing single."
arch=('i686' 'x86_64')
url='http://dosowisko.net/radioedit/'
license=('GPL2+')
depends=('allegro')
makedepends=('cmake')
source=(http://dosowisko.net/radioedit/RadioEdit-$pkgver-Linux.tar.gz)
sha256sums=('398ba6bf1ce851f6aadcc11ecaec454401b63743bceff3acf9b57be4d608b56b')
build() {
mkdir "$pkgname/build"
cd "$pkgname/build"
cmake -DCMAKE_INSTALL_PREFIX="$pkgdir/usr" -DCMAKE_BUILD_TYPE=Release ..
make
}
package() {
cd "$pkgname/build"
make install
}
|