blob: d6347004a85ea6fb69ebdebcae3f40aca8b3b427 (
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
|
# Contributor: Alex Whitt <alex.joseph.whitt@gmail.com>
# Maintainer: Stefan Husmann <stefan-husmann@t-online.de>
_pkgsrcname=parseclj
_pkgmaintainer=clojure-emacs
pkgver=1.1.1
pkgrel=1
pkgdesc="Associative data structure functions for elisp"
pkgname=emacs-parseclj
arch=('any')
url="https://github.com/${_pkgmaintainer}/${_pkgsrcname}"
license=('GPL3')
depends=('emacs')
source=("$pkgname-$pkgver.tar.gz::https://github.com/${_pkgmaintainer}/${_pkgsrcname}/archive/v${pkgver}.tar.gz")
sha256sums=('eb619595e051547748b4a239055836d4ba8791ca489ccf27646aa53200a8b0e2')
build() {
cd ${_pkgsrcname}-${pkgver}
emacs -q --no-splash -batch -L . -f batch-byte-compile *.el
}
package() {
cd ${_pkgsrcname}-${pkgver}
install -d "${pkgdir}"/usr/share/emacs/site-lisp/
install -m644 *.el{c,} "${pkgdir}"/usr/share/emacs/site-lisp
}
|