summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 4945c4fdcfc3f9bc7fe1765e36f54b7286151734 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# Maintainer: Joshua Merrell <joshuamerrell@gmail.com>
pkgname=neosphere
pkgver=5.7.2
pkgrel=1
pkgdesc="A fast, lightweight implementation of the Sphere game engine"
arch=('x86_64')
url="https://github.com/fatcerberus/neosphere"
license=('BSD')
depends=('allegro' 'libmng' 'libChakraCore.so')
replaces=('minisphere')
source=(https://github.com/fatcerberus/$pkgname/archive/v$pkgver.tar.gz)
sha256sums=('fdce972db17d5bce2f1bc7201b38d5151389292ac8ab490897312c4a2dbc7300')

build() {
  cd neosphere-$pkgver
  make
}

package() {
  cd "neosphere-$pkgver"
  make DESTDIR="$pkgdir" install
}