blob: 031da91642bc54033686325f586459a8708f100c (
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=ticklemonster
pkgver=0.1.3
pkgrel=1
pkgdesc="You're the TICKLE MONSTER! You tickle kids to ensure they are raised with proper amounts of fun! Game made for Ludum Dare 33"
arch=('i686' 'x86_64')
url='http://dosowisko.net/ticklemonster/'
license=('GPL2+')
depends=('allegro')
makedepends=('cmake')
source=(http://dosowisko.net/ticklemonster/TickleMonster-$pkgver-Linux.tar.gz)
sha256sums=('fd3a82c3e0f646048cf92e4ae90d76b73196b0b905553bd6c32963c9ab33a60b')
build() {
mkdir "$pkgname/build"
cd "$pkgname/build"
cmake -DCMAKE_INSTALL_PREFIX="$pkgdir/usr" -DCMAKE_BUILD_TYPE=Release ..
make
}
package() {
cd "$pkgname/build"
make install
}
|