summaryrefslogtreecommitdiff
path: root/pcr/emacs-newlisp
diff options
context:
space:
mode:
authorOmar Vega Ramos <ovruni@gnu.org.pe>2015-05-05 17:19:27 -0500
committerOmar Vega Ramos <ovruni@gnu.org.pe>2015-05-05 17:19:27 -0500
commitb912ecbb358c92ee504d033e1cfe84d412e80ed4 (patch)
treeb222c2891f0078466dd4b2c6eadaa162b8a3ff5e /pcr/emacs-newlisp
parentbe94e4dad3d93cd61d009a84d8175d1fb4f8cc08 (diff)
emacs-newlisp-mode-git-39.cb67534-1: updating version
Diffstat (limited to 'pcr/emacs-newlisp')
-rw-r--r--pcr/emacs-newlisp/PKGBUILD24
-rw-r--r--pcr/emacs-newlisp/emacs-newlisp.install26
2 files changed, 0 insertions, 50 deletions
diff --git a/pcr/emacs-newlisp/PKGBUILD b/pcr/emacs-newlisp/PKGBUILD
deleted file mode 100644
index 5f528640d..000000000
--- a/pcr/emacs-newlisp/PKGBUILD
+++ /dev/null
@@ -1,24 +0,0 @@
-# Contributor (Arch): Jan Kròávek <wamba@centrum.cz>
-# Contributor (Arch): Stefan Husmann <stefan-husmann@t-online.de>
-# Maintainer : Parabola GNU / Linux-libre Aurélien DESBRIÈRES <aurelien@cwb.IO>
-
-pkgname=emacs-newlisp
-pkgver=0.25
-pkgrel=5
-arch=('any')
-pkgdesc="Emacs mode for Newlisp."
-url="http://artfulcode.net/projects"
-depends=('emacs')
-makedepends=('unzip')
-license=('GPL')
-source=(http://www.artfulcode.net/wp-content/uploads/2008/12/newlisp-mode.zip)
-noextract=newlisp-mode.zip
-install=emacs-newlisp.install
-
-build() {
- cd $srcdir
- unzip -quo newlisp-mode.zip || return 1
- cd $srcdir/newlisp-mode || return 1
- install -d $pkgdir/usr/share/emacs/site-lisp/newlisp-mode
- install -Dm644 *.el $pkgdir/usr/share/emacs/site-lisp/newlisp-mode
-}
diff --git a/pcr/emacs-newlisp/emacs-newlisp.install b/pcr/emacs-newlisp/emacs-newlisp.install
deleted file mode 100644
index 640e19d16..000000000
--- a/pcr/emacs-newlisp/emacs-newlisp.install
+++ /dev/null
@@ -1,26 +0,0 @@
-# vim: set ft=sh:
-post_install() {
- echo "
-=> Autoloading:
- ------------
- In your .emacs or .init.el
- (add-to-list 'load-path (expand-file-name \"/usr/share/emacs/site-lisp/newlisp-mode\"))
- (add-to-list 'auto-mode-alist '(\"\\\\.lsp\\\\'\" . newlisp-mode))
- (autoload 'newlisp-mode \"newlisp\" \"Turn on NewLisp mode\" t)
- (turn-on-font-lock)
-
-=> Newlisp is started with the Emacs command M-x newlisp-mode."
-}
-
-post_upgrade() {
- post_install $1
-}
-
-post_remove() {
- post_install
-}
-
-op=$1
-shift
-
-$op $*