summarylogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--.SRCINFO6
-rw-r--r--PKGBUILD13
2 files changed, 15 insertions, 4 deletions
diff --git a/.SRCINFO b/.SRCINFO
index 6a946102fe37..0272ad9e48a8 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,8 +1,8 @@
# Generated by mksrcinfo v8
-# Tue Aug 16 00:11:50 UTC 2016
+# Wed Apr 26 06:52:06 UTC 2017
pkgbase = anura-git
pkgdesc = A fully-featured game engine, the tech behind the spectacular Frogatto & Friends.
- pkgver = 0.0.2755.g7768547
+ pkgver = 0.0.3171.g9100349d
pkgrel = 1
url = https://github.com/anura-engine/anura
install = anura.install
@@ -24,8 +24,10 @@ pkgbase = anura-git
optdepends = frogatto-git: the default game module
optdepends = box2d: box2d physics
source = git+https://github.com/anura-engine/anura.git#branch=trunk
+ source = git+https://github.com/sweetkristas/imgui.git
source = anura.sh
md5sums = SKIP
+ md5sums = SKIP
md5sums = 15f4c03c2404bcfd7618b8f9e0c850ba
pkgname = anura-git
diff --git a/PKGBUILD b/PKGBUILD
index 7502c8ef5f63..246ec0115283 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -1,6 +1,6 @@
# Maintainer: Yaohan Chen <yaohan.chen@gmail.com>
pkgname=anura-git
-pkgver=0.0.2755.g7768547
+pkgver=0.0.3171.g9100349d
pkgrel=1
pkgdesc="A fully-featured game engine, the tech behind the spectacular Frogatto & Friends."
arch=(i686 x86_64)
@@ -11,13 +11,22 @@ optdepends=('frogatto-git: the default game module'
'box2d: box2d physics')
makedepends=(git boost)
source=('git+https://github.com/anura-engine/anura.git#branch=trunk'
+ 'git+https://github.com/sweetkristas/imgui.git'
anura.sh)
md5sums=('SKIP'
+ 'SKIP'
'15f4c03c2404bcfd7618b8f9e0c850ba')
install=anura.install
_gitname=anura
+prepare() {
+ cd $_gitname
+ git submodule init
+ git config submodule.imgui.url "$srcdir/imgui"
+ git submodule update
+}
+
pkgver() {
cd $_gitname
if _tag=$(git describe 2>/dev/null)
@@ -34,7 +43,7 @@ build() {
cd $_gitname
# USE_CCACHE=no to honor makepkg's ccache setting.
- make USE_CCACHE=no
+ make USE_CCACHE=no anura
}
package() {