1 # Maintainer: Eugene Tan <jmingtan at gmail dot com>
6 pkgdesc="libRocket - The HTML/CSS User Interface library"
8 url="http://librocket.com"
11 makedepends=(git cmake)
17 _gitroot=http://github.com/lloydw/libRocket.git
23 if [[ -d $_gitname ]]; then
24 cd $_gitname && git pull origin
30 rm -rf $_gitname-build
31 git clone $_gitname $_gitname-build
32 cd $_gitname-build/Build
33 cmake -DCMAKE_INSTALL_PREFIX="" .
38 cd $_gitname-build/Build
39 make install DESTDIR=$pkgdir/usr
42 # vim:set ts=4 sw=4 et: