summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 4f2a4e62c18347be19b933e94258cca70e7cfe8c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# Maintainer: Paul Clark <paul500clark at gmail dot com>
pkgname=emacs-xterm-color
_pkgname=xterm-color
pkgver=1.9
pkgrel=1
pkgdesc="Emacs ANSI control sequence to text-property translator"
arch=('any')
url="https://github.com/atomontage/xterm-color"
license=('GPL')
makedepends=('emacs')
source=($pkgname-$pkgver.tar.gz::https://github.com/atomontage/${_pkgname}/archive/${pkgver}.tar.gz)
md5sums=('c34d6af56269615bf4a8068fa55eabd6')


package() {
  cd ${_pkgname}-${pkgver}
  emacs -Q -batch -f batch-byte-compile xterm-color.el
  install -d "${pkgdir}/usr/share/emacs/site-lisp"
  install -D -m644 xterm-color.el xterm-color.elc "$pkgdir/usr/share/emacs/site-lisp"
}

# vim:set ts=2 sw=2 et: