summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 35f6346aa0b0410730798f6939d66855bd01e99b (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
# Contributor: Mattias Andrée <`base64 -d`(bWFhbmRyZWUK)@member.fsf.org>
# Maintainer: Stefan Husmann <stefan-husmann@t-online.de>

pkgname=paredit
pkgver=24
_pkgver=$pkgver
pkgrel=2
pkgdesc="Emacs minor mode for pseudo-structurally editing Lisp code"
arch=('any')
url="http://www.emacswiki.org/emacs/ParEdit"
license=('GPL')
makedepends=('emacs')
install=paredit.install
source=("http://mumble.net/~campbell/emacs/$pkgname-${_pkgver}.el")
sha256sums=('6a1ead320d0fc3032d0359e6f66e3b62b065eea71f70a5315de0b06930b2e35e')

build() {
  cd "$srcdir"
  emacs -Q -batch -f batch-byte-compile paredit-${_pkgver}.el
}

package() {
  cd "$srcdir"

  install -D -m644 paredit-${_pkgver}.elc \
    "$pkgdir"/usr/share/emacs/site-lisp/paredit.elc
  install -D -m644 paredit-${_pkgver}.el \
    "$pkgdir"/usr/share/emacs/site-lisp/paredit.el
}