summaryrefslogtreecommitdiff
path: root/pcr/emacs-fuzzy/PKGBUILD
blob: e7a53be7f795d7b5d067d3534a710fb570bfde51 (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
# Maintainer (aur): Alex Whitt <alex.joseph.whitt@gmail.com>

# parabola changes and rationale:
#  no changes

pkgname=emacs-fuzzy
pkgver=0.1
pkgrel=1
pkgdesc="Fuzzy matching utilities for GNU Emacs"
url="https://github.com/auto-complete/fuzzy-el"
arch=('any')
license=('GPL3')
depends=('emacs')
makedepends=('git')
provides=('emacs-fuzzy')
source=("https://github.com/auto-complete/fuzzy-el/archive/v${pkgver}.tar.gz")
sha256sums=('SKIP')

build() {
  cd "${srcdir}/fuzzy-el-${pkgver}"
  emacs -Q -batch -L . -f batch-byte-compile *.el
}

package() {
  cd "${srcdir}/fuzzy-el-${pkgver}"
  install -d "${pkgdir}/usr/share/emacs/site-lisp/fuzzy"
  install -m644 *.el{c,} "${pkgdir}/usr/share/emacs/site-lisp/fuzzy/"
}