blob: 7ffa824326cbcab24fd8661c5964fe5c571c3a04 (
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
|
# Maintainer: Stefan Husmann <stefan-husmann@t-online.de>
pkgname=emacs-yasnippet-git
pkgver=0.11.0_18_ge74f00e
pkgrel=1
pkgdesc="Yet another template system for Emacs - git version"
arch=('any')
url="https://github.com/capitaomorte/yasnippet"
license=('GPL')
makedepends=('git')
provides=('emacs-yasnippet')
conflicts=('emacs-yasnippet')
install=yasnippet.install
source=('git+https://github.com/capitaomorte/yasnippet')
md5sums=('SKIP')
_gitname=yasnippet
pkgver() {
cd "$srcdir"/$_gitname
git describe --tags|sed 's/-/_/g'
}
package () {
cd "$srcdir/$_gitname"
install -d $pkgdir/usr/share/emacs/site-lisp/yas
cp -r * $pkgdir/usr/share/emacs/site-lisp/yas
}
|