summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 1dff00f2d752f91779b48b9cc9974f1b31e63b3f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
# Contributor: Alex Whitt <alex.joseph.whitt@gmail.com>
# Maintainer: Stefan Husmann <stefan-husmann@t-online.de>

pkgname=emacs-nim-mode-git
pkgver=0.4.1r68.ga508b4b
pkgrel=1
pkgdesc="Emacs mode for the nim programming language"
arch=('any')
url="https://github.com/nim-lang/nim-mode"
license=('GPL3')
conflicts=("${pkgname%-git}")
provides=("${pkgname%-git}")
depends=('emacs-dash' 'emacs-epc' 'emacs-ctable' 'emacs-epl' 'emacs-deferred' 'emacs-company-mode'
	 'emacs-commander' 'emacs-flycheck')
source=("git+https://github.com/nim-lang/nim-mode.git" Makefile.patch)
sha256sums=('SKIP' '20fef5db29d67788dd22cbc9dd97dd2a778a66a0b6f0b80aa9776d08cadb4576')

pkgver() {
  cd nim-mode
  git describe --tags --long | sed 's+-+r+' | tr - .|cut -c2-
}

prepare() {
  cd nim-mode
  patch -Np1 < "$srcdir"/Makefile.patch
}

build() {
  cd nim-mode
  make 
}

package() {
  cd nim-mode
  install -dm755 "$pkgdir"/usr/share/emacs/site-lisp/
  cp *.el{,c} "$pkgdir"/usr/share/emacs/site-lisp/
}