blob: 90a1850e4b47ed112986d50560245037214fa9c0 (
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
|
# Maintainer: Hyperdriveguy <hyperdriveguy@gmail.com>
pkgname=tilemap-studio
pkgver=4.0.1
pkgrel=1
pkgdesc="A tilemap editor for Game Boy, GBC, GBA, or SNES projects."
arch=('x86_64')
url='https://github.com/Rangi42/tilemap-studio'
license=('LGPL')
depends=('fltk-mod')
makedepends=('git' 'make' 'gcc')
source=("${pkgname}"::'git+https://github.com/Rangi42/tilemap-studio.git')
sha256sums=('SKIP')
build() {
cd "$pkgname"
git checkout 20f6a83
make
}
package() {
cd "$pkgname"
make PREFIX=/usr DESTDIR="$pkgdir/" install
}
|