summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorKrzysztof Dermont2015-11-11 16:02:16 +0100
committerKrzysztof Dermont2015-11-11 16:02:16 +0100
commitf20cb68347769527ff2dfea57ccedf940e2d80ad (patch)
treed345d9600d2236cafe45cce6269d4e92b916e397
parente44e928e2445058237e94f4c0b5b211f28a819ab (diff)
downloadaur-f20cb68347769527ff2dfea57ccedf940e2d80ad.tar.gz
Remove lua on package creation
-rw-r--r--.SRCINFO2
-rw-r--r--PKGBUILD3
2 files changed, 3 insertions, 2 deletions
diff --git a/.SRCINFO b/.SRCINFO
index aafaf7dd18ae..a556c06a832a 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,7 +1,7 @@
pkgbase = urho3d
pkgdesc = Urho3D is a free lightweight, cross-platform 2D and 3D game engine implemented in C++ and released under the MIT license.
pkgver = 1.5
- pkgrel = 1
+ pkgrel = 2
url = http://urho3d.github.io
install = urho3d.install
arch = i686
diff --git a/PKGBUILD b/PKGBUILD
index a1b687843339..074e13aff67c 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -1,6 +1,6 @@
pkgname=urho3d
pkgver=1.5
-pkgrel=1
+pkgrel=2
pkgdesc="Urho3D is a free lightweight, cross-platform 2D and 3D game engine implemented in C++ and released under the MIT license."
arch=('i686' 'x86_64')
url="http://urho3d.github.io"
@@ -27,4 +27,5 @@ package() {
make DESTDIR="$pkgdir/" install
cd "$pkgdir/usr/bin"
mv "./Editor.sh" "./urho3d-editor.sh"
+ rm lua luac
}