summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorPierre Neidhardt2015-09-25 18:28:19 +0200
committerPierre Neidhardt2015-09-26 10:29:45 +0200
commitc34190074e72e594a85e17e2b439090df0fa2d39 (patch)
tree6feb7e83dcf7377bbf630a49ca35a5ec66eff0b7
parent2f1116e8417e6c84a75f082487f38e8cf987c309 (diff)
downloadaur-c34190074e72e594a85e17e2b439090df0fa2d39.tar.gz
emacs-flex-mode: Fix syntax
-rw-r--r--.SRCINFO2
-rw-r--r--PKGBUILD18
2 files changed, 10 insertions, 10 deletions
diff --git a/.SRCINFO b/.SRCINFO
index f4ee9954f8fd..c961190f367e 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,7 +1,7 @@
pkgbase = emacs-flex-mode
pkgdesc = Emacs major mode for flex
pkgver = 1.0
- pkgrel = 2
+ pkgrel = 3
url = http://www.emacswiki.org/emacs/FlexMode
arch = any
license = GPL
diff --git a/PKGBUILD b/PKGBUILD
index b8e5de581ab8..7f1c34fe0d57 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -2,21 +2,21 @@
pkgname=emacs-flex-mode
pkgver=1.0
-pkgrel=2
+pkgrel=3
pkgdesc="Emacs major mode for flex"
-arch=('any')
+arch=("any")
url="http://www.emacswiki.org/emacs/FlexMode"
-license=('GPL')
-optdepends=('emacs')
-makedepends=('emacs')
-source=(http://ftp.sunet.se/pub/gnu/emacs-lisp/incoming/flex-mode.el)
-sha1sums=('a63c956e21a42849c1f5277dcdf1538e21846322')
+license=("GPL")
+makedepends=("emacs")
+optdepends=("emacs")
+source=("http://ftp.sunet.se/pub/gnu/emacs-lisp/incoming/flex-mode.el")
+sha1sums=("a63c956e21a42849c1f5277dcdf1538e21846322")
build() {
emacs --batch --no-site-file -f batch-byte-compile flex-mode.el
}
package() {
- mkdir -p $pkgdir/usr/share/emacs/site-lisp
- cp *.el{c,} $pkgdir/usr/share/emacs/site-lisp/
+ mkdir -p "$pkgdir/usr/share/emacs/site-lisp"
+ cp *.el{c,} "$pkgdir/usr/share/emacs/site-lisp/"
}