4 pkgdesc="Cute And Tiny Window Manager"
5 url="http://github.com/pyknite/catwm"
8 makedepends=('gcc' 'make' 'git')
14 _gitroot="git://github.com/pyknite/catwm.git"
18 msg "Connecting to GIT server...."
20 # if local repo already exist
21 if [[ -d $startdir/src/$_gitname ]] ; then
23 git pull origin || return 1
24 msg "The local files are updated."
27 git clone $_gitroot || return 1
30 msg "GIT checkout done"
31 msg "Starting make..."
39 make DESTDIR=${pkgdir} install || return 1