summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 10bb4973c00b5c80c871e76334ff8d450d16a547 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# Maintainer: Olivier Galibert <galibert@pobox.com>
# Contributor: Philip Mueller <mail at philip.in-aachen dot net>
pkgname=emacs-yaml-mode
pkgver=0.0.13
pkgrel=1
pkgdesc="Emacs major mode for editing files in the YAML data serialization format"
arch=('any')
url="https://github.com/yoshiki/yaml-mode"
license=('GPL')
groups=()
depends=('emacs')
install=emacs-yaml-mode.install
source=(https://github.com/yoshiki/yaml-mode/archive/v$pkgver.tar.gz)
md5sums=('22a94319ba03a94578dfdfae11f8b5ae')

package() {
  cd $srcdir/yaml-mode-$pkgver
  # Install the mode for Emacs
  install -D -m644 yaml-mode.el $pkgdir/usr/share/emacs/site-lisp/yaml-mode.el
}