updated on Wed Jan 18 08:00:29 UTC 2012
[aur-mirror.git] / monsterwm-git / PKGBUILD
blob007b7b83809ba1a5c51b09d43eee4fc78cfef9cf
1 #Maintained by ivoarch <ivayloarch@gmail.com> 
2 pkgname=monsterwm-git
3 pkgver=20111219
4 pkgrel=1
5 pkgdesc="Very minimal, lightweight, monsterous, tiny, dynamic tiling window manager"
6 url="https://github.com/c00kiemon5ter/monsterwm"
7 arch=('i686' 'x86_64')
8 license=('GPL3')
9 groups=('modified')
10 depends=('libx11')
11 makedepends=('git') 
12 md5sums=('')
14 _gitroot="git://github.com/c00kiemon5ter/monsterwm.git"
15 _gitname="monsterwm"
16 _gitbranch="master"
18 build() {
19   cd ${srcdir}
21   msg "Connecting to GIT server..."
23   if [ -d ${_gitname} ]; then
24     cd ${_gitname} && git pull origin master
25     cd ..
26     msg "The local files are updated."
27   else
28     git clone ${_gitroot} ${_gitname}
29   fi
31   msg "GIT checkout done or server timeout"
33   msg "Removing old build directory..."
34   rm -Rf ${srcdir}/${_gitname}-build
35   msg "Creating build directory..."
36   cp -R ${srcdir}/${_gitname} ${srcdir}/${_gitname}-build
38   msg "Starting make..."
39   msg "If you want to configure monsterwm, copy config.def.h to ${startdir}/config.h and edit it"
41   cd ${_gitname}-build
43   [[ -e ${startdir}/config.h ]] && msg "Using your config.h" && cp ${startdir}/config.h .
45   make PREFIX=/usr DESTDIR="${pkgdir}" install