updated on Thu Jan 26 16:09:46 UTC 2012
[aur-mirror.git] / emacs-clojure-mode-git / PKGBUILD
blobce5caba3c0b940737db4ea789fac27e5c674aecb
1 #Maintainer: Nick Vogel <vogelrn+aur@gmail.com>
3 arch=(i686 x86_64)
4 pkgname=emacs-clojure-mode-git
5 pkgver=20091025
6 pkgrel=1
7 pkgdesc="clojure mode for emacs"
8 url="http://clojure.codestuffs.com/"
9 license="GPL3"
10 depends=('emacs')
11 makedepends=('git')
12 provides=('emacs-clojure-mode')
13 conflicts=()
14 replaces=('emacs-clojure-mode')
15 backup=()
16 source=('emacs-clojure-mode-git.install')
17 md5sums=('0e968701d9961a7b9e6d82e586d26250')
18 install=('emacs-clojure-mode-git.install')
20 _gitroot="git://github.com/jochu/clojure-mode"
21 _gitname="clojure-mode"
22 build() {
23   cd $startdir/src
24   msg "Connecting to github.com GIT server...."
26   if [ -d $startdir/src/$_gitname ] ; then
27     cd $_gitname && git pull origin
28     msg "The local files are updated."
29   else
30     git clone $_gitroot
31   fi
33   msg "GIT checkout done or server timeout"
35   cp -r $startdir/src/$_gitname $startdir/src/$_gitname-build
36   cd $startdir/src/$_gitname-build
37   
38   rm -f README
40   # install the directory in emacs site-lisp
41   install -d $pkgdir/usr/share/emacs/site-lisp/$_gitname
43   # install the files in directory created above
44   install -m644 * -t $pkgdir/usr/share/emacs/site-lisp/$_gitname
45