diff options
author | root <root@rshg054.dnsready.net> | 2011-08-07 23:14:33 +0000 |
---|---|---|
committer | root <root@rshg054.dnsready.net> | 2011-08-07 23:14:33 +0000 |
commit | 0f9e4ba23bb6296d8bb8010f70d868fd08db9c54 (patch) | |
tree | ddd4394d1c62e9831f05238ff56a70da01f6c5c0 /community/mygui/PKGBUILD | |
parent | 7f2d7bd11daf0c654d4147cb91f9913bc587c276 (diff) |
Sun Aug 7 23:14:33 UTC 2011
Diffstat (limited to 'community/mygui/PKGBUILD')
-rw-r--r-- | community/mygui/PKGBUILD | 21 |
1 files changed, 12 insertions, 9 deletions
diff --git a/community/mygui/PKGBUILD b/community/mygui/PKGBUILD index a95e65ca1..d9c89d9b7 100644 --- a/community/mygui/PKGBUILD +++ b/community/mygui/PKGBUILD @@ -1,9 +1,9 @@ -# $Id: PKGBUILD 46788 2011-05-11 17:19:25Z svenstaro $ +# $Id: PKGBUILD 53635 2011-08-07 03:07:13Z svenstaro $ # Maintainer: Sven-Hendrik Haase <sh@lutzhaase.com> # Contributor: Andrew Belitsky <belitsky.a@gmail.com> pkgbase=mygui pkgname=('mygui' 'mygui-docs') -pkgver=3.0.1 +pkgver=3.2.0rc1 pkgrel=7 pkgdesc="A multilayer and overlappable GUI System for OGRE" arch=('i686' 'x86_64') @@ -12,11 +12,11 @@ license=('LGPL') depends=('boost-libs' 'ogre' 'ois') makedepends=('boost' 'cmake' 'doxygen' 'graphviz') install=mygui.install -source=("http://downloads.sourceforge.net/project/my-gui/MyGUI/MyGUI_3.0.1/MyGUI_3.0.1_source.zip") -md5sums=('e9e82bf60081be58fea3f64d32e2ab3a') +source=("http://downloads.sourceforge.net/my-gui/MyGUI_3.2.0_RC1.zip") +md5sums=('1ac1340148e81ad49a26c8a87acefc6b') build() { - cd $srcdir/MyGUI3.0 + cd $srcdir/MyGUI_3.2.0_RC1 # change CMake config so demos install to /opt sed -i 's:"bin:"../opt/MYGUI:' CMake/Utils/MyGUIConfigTargets.cmake @@ -26,8 +26,7 @@ build() { # get a clean build dir [[ -d build ]] && rm -rf build - mkdir build - cd build + mkdir build && cd build # generate CMake Makefile cmake .. \ @@ -50,7 +49,9 @@ build() { package_mygui() { optdepends=('mygui-docs: documentation') - cd $srcdir/MyGUI3.0/build + cd $srcdir/MyGUI_3.2.0_RC1 + + cd build # install the whole bunch make DESTDIR="$pkgdir" install @@ -64,7 +65,9 @@ package_mygui-docs() { pkgdesc="Documentation for mygui" depends=() - cd $srcdir/MyGUI3.0 + cd $srcdir/MyGUI_3.2.0_RC1 + + cd build # install docs install -d $pkgdir/usr/share/doc/ |