aboutsummaryrefslogtreecommitdiffstats
path: root/emacs-clojure-mode-git/PKGBUILD
diff options
context:
space:
mode:
authorMattias Andrée <maandree@operamail.com>2015-06-11 18:42:08 +0200
committerMattias Andrée <maandree@operamail.com>2015-06-11 18:42:08 +0200
commit431a4ca6d3b582ba1e949b667fe278c93217f8cb (patch)
treefa0489f07c80612965ff5e6cfe6d4790d8f0087e /emacs-clojure-mode-git/PKGBUILD
parentupdate todo (diff)
downloadaur-packages-431a4ca6d3b582ba1e949b667fe278c93217f8cb.tar.gz
aur-packages-431a4ca6d3b582ba1e949b667fe278c93217f8cb.tar.bz2
aur-packages-431a4ca6d3b582ba1e949b667fe278c93217f8cb.tar.xz
migrating to aur4
Signed-off-by: Mattias Andrée <maandree@operamail.com>
Diffstat (limited to 'emacs-clojure-mode-git/PKGBUILD')
-rw-r--r--emacs-clojure-mode-git/PKGBUILD44
1 files changed, 0 insertions, 44 deletions
diff --git a/emacs-clojure-mode-git/PKGBUILD b/emacs-clojure-mode-git/PKGBUILD
deleted file mode 100644
index df78e0b..0000000
--- a/emacs-clojure-mode-git/PKGBUILD
+++ /dev/null
@@ -1,44 +0,0 @@
-# Maintainer: Mattias Andrée <`base64 -d`(bWFhbmRyZWUK)@member.fsf.org>
-# Contributor: Gianni Vialetto <g.vialetto@gmail.com>
-# Contributor: Nick Vogel <vogelrn+aur@gmail.com>
-
-pkgname=emacs-clojure-mode-git
-pkgver=20130411
-pkgrel=1
-arch=('any')
-pkgdesc="Emacs major mode for the clojure language (GIT version)"
-url="https://github.com/technomancy/clojure-mode"
-license="GPL3"
-depends=('emacs')
-optdepends=('paredit: enhanced LISP structure editing')
-makedepends=('git')
-provides=('emacs-clojure-mode')
-replaces=('emacs-clojure-mode')
-install='emacs-clojure-mode-git.install'
-
-_gitroot="https://github.com/technomancy/clojure-mode.git"
-_gitname="clojure-mode"
-build() {
- cd $startdir/src
- msg "Connecting to github.com GIT server...."
-
- if [ -d $startdir/src/$_gitname ] ; then
- cd $_gitname && git pull origin
- msg "The local files are updated."
- else
- git clone $_gitroot
- fi
-
- msg "GIT checkout done or server timeout"
-}
-
-package() {
- cd $startdir/src/$_gitname
-
- install -d $pkgdir/usr/share/emacs/site-lisp/
-
- # install the files in directory created above
- install -m644 clojure-mode.el -t $pkgdir/usr/share/emacs/site-lisp/
- install -m644 clojure-test-mode.el -t $pkgdir/usr/share/emacs/site-lisp/
-}
-