updated on Tue Jan 10 12:02:00 UTC 2012
[aur-mirror.git] / emacs-mingus-git / PKGBUILD
blob9bac2f8eed8830e5d5b630cdb37701207a8d07d1
1 # Contributor: Alexander Tsamutali <astsmtl@yandex.ru>
3 pkgname=emacs-mingus-git
4 pkgver=20100413
5 pkgrel=1
6 pkgdesc="A frontend for GNU Emacs to the Music Player daemon."
7 arch=('any')
8 url="http://github.com/pft/mingus"
9 license=('GPL')
10 depends=('emacs')
11 makedepends=('git')
12 provides=('emacs-mingus')
13 conflicts=('emacs-mingus' 'emacs-libmpdee')
14 install=emacs-mingus-git.install
16 _gitroot="git://github.com/pft/mingus.git"
17 _gitname="mingus"
19 build() {
20   cd "$srcdir"
21   msg "Connecting to GIT server...."
23   if [ -d $_gitname ] ; then
24     cd $_gitname && git pull origin
25     msg "The local files are updated."
26   else
27     git clone $_gitroot $_gitname
28   fi
30   msg "GIT checkout done or server timeout"
31   msg "Starting make..."
33   rm -rf "$srcdir/$_gitname-build"
34   git clone "$srcdir/$_gitname" "$srcdir/$_gitname-build"
35   cd "$srcdir/$_gitname-build"
37   for file in libmpdee.el mingus.el
38   # FIXME: mingus-stays-home.el should be byte-compiled too.
39   do
40     emacs --batch -f batch-byte-compile $file || return 1
41   done
43   install -d "$pkgdir/usr/share/emacs/site-lisp/" || return 1
44   for file in *.{el,elc}
45   do
46     install -v -m 644 $file "$pkgdir/usr/share/emacs/site-lisp/" || return 1
47   done