blob: e030fa4916dbc72321ba9825b72a5338b42ea447 (
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
31
32
33
34
|
# Maintainer: Esben Haabendal <esben@haabendal.dk>
pkgname=emacs-editorconfig-git
pkgver=0.8.2.r4.1d4acc3ec736
pkgrel=1
pkgdesc="EditorConfig Emacs Plugin"
arch=('any')
_github_org="editorconfig"
_github_repo="editorconfig-emacs"
url="http://github.com/${_github_org}/${_github_repo}"
license=('GPL3')
depends=('emacs' 'editorconfig-core-c-git')
makedepends=('git')
provides=('emacs-editorconfig')
install="${pkgname}.install"
source=("git+https://github.com/${_github_org}/${_github_repo}.git")
md5sums=('SKIP')
pkgver() {
cd "$_github_repo"
printf "%s" "$(git describe --long --tags | sed 's/^v//;s/\([^-]*-\)g/r\1/;s/-/./g')"
}
build() {
cd "$_github_repo"
make LOAD_PATH="-L /usr/share/emacs/site-lisp -L /usr/share/emacs/site-lisp/dash -L ${srcdir}" \
compile
}
package() {
cd "$_github_repo"
mkdir -p ${pkgdir}/usr/share/emacs/site-lisp/editorconfig-emacs
cp *.el* ${pkgdir}/usr/share/emacs/site-lisp/editorconfig-emacs
}
|