summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: c280b12d2190650c9328201cc5c66e814631cc03 (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
# Maintainer: Stefan Husmann <stefan-husmann@t-online.de>
pkgname=emacs-yasnippet-git
epoch=1
pkgver=0.13.0.r7.g7a178a2
pkgrel=1
pkgdesc="Yet another template system for Emacs - git version"
arch=('any')
url="https://github.com/joaotavora/yasnippet"
license=('GPL')
makedepends=('git')
provides=('emacs-yasnippet')
conflicts=('emacs-yasnippet')
install=yasnippet.install
source=('git+https://github.com/joaotavora/yasnippet')
md5sums=('SKIP')
_gitname=yasnippet

pkgver() {
  cd $_gitname
  git describe --tags|sed 's/-/.r/'|sed 's/-/./'
}

package () {
  cd $_gitname
  install -d "$pkgdir"/usr/share/emacs/site-lisp/yas
  cp -r * "$pkgdir"/usr/share/emacs/site-lisp/yas
}