updated on Thu Jan 19 16:10:29 UTC 2012
[aur-mirror.git] / uemacs-git / PKGBUILD
blob9f77a2d7fa401eaf144ed0ee32d166b5dffdaa17
1 # Maintainer: Marcin Karpezo <sirmacik at gmail dot com>
2 pkgname=uemacs-git
3 pkgver=20100603
4 pkgrel=2
5 pkgdesc="Micro-emacs version customized by Linus Torvalds"
6 arch=('i686' 'x86_64')
7 url="http://git.kernel.org/?p=editors/uemacs/uemacs.git;a=summary"
8 license=('custom')
9 depends=('ncurses')
10 makedepends=('git')
11 source=(helplocation.patch)
12 md5sums=('9e4e92614c846a541b034cd115f4140f')
14 _gitname="uemacs"
15 _gitroot=" git://git.kernel.org/pub/scm/editors/uemacs/${_gitname}.git"
17 build() {
18     cd ${startdir}/src
19     
20     if [[ -d ${startdir}/src/${_gitname} ]]; then
21         cd ${_gitname}
22         git pull origin || return 1
23     else
24         git clone ${_gitroot} || return 1
25     fi
27     cd ${srcdir}/uemacs/
28     mkdir -p ${pkgdir}/usr/bin
29     mkdir -p ${pkgdir}/usr/share/doc/uemacs
31         # patch to make uemacs look for a helpfile in the correct location
32         patch -p1 < ../helplocation.patch || return 1
34     sed -i "s@BINDIR=/usr/bin@BINDIR=${pkgdir}/usr/bin@;s@LIBDIR=/usr/lib@LIBDIR=${pkgdir}/usr/share/doc/uemacs@" Makefile  >>  Makefile
35     make || return 1
36     make install || return 1
38