summaryrefslogtreecommitdiff
path: root/pcr/auto-complete
diff options
context:
space:
mode:
authorAndreas Grapentin <andreas@grapentin.org>2018-02-01 15:26:38 +0100
committerAndreas Grapentin <andreas@grapentin.org>2018-02-01 17:11:36 +0100
commit6f595b6edbc1ea0e16e268cb67197afea0704193 (patch)
tree1fbcd59e42af9911868d4db6187e5646e2ab1673 /pcr/auto-complete
parent320e5c95cef052fcdd748ec2e754c323d105e2b9 (diff)
downloadabslibre-6f595b6edbc1ea0e16e268cb67197afea0704193.tar.gz
abslibre-6f595b6edbc1ea0e16e268cb67197afea0704193.tar.bz2
abslibre-6f595b6edbc1ea0e16e268cb67197afea0704193.zip
pcr/emacs-auto-complete: updated to 1.5.1
Diffstat (limited to 'pcr/auto-complete')
-rw-r--r--pcr/auto-complete/PKGBUILD30
-rw-r--r--pcr/auto-complete/auto-complete.install21
2 files changed, 0 insertions, 51 deletions
diff --git a/pcr/auto-complete/PKGBUILD b/pcr/auto-complete/PKGBUILD
deleted file mode 100644
index 884956f45..000000000
--- a/pcr/auto-complete/PKGBUILD
+++ /dev/null
@@ -1,30 +0,0 @@
-# Contributor (Arch): abf <zouxiaoming@gmail.com>
-# Maintainer : Parabola GNU / Linux-libre Aurelien Desbrieres <aurelien@cwb.io>
-
-pkgname=auto-complete
-pkgver=1.3.1
-pkgrel=1
-pkgdesc="A plugin for emacs that allows to auto-complete.Auto Complete Mode is the most intelligent auto-completion extension for GNU Emacs."
-arch=('any')
-url="http://cx4a.org/software/auto-complete/"
-license=('GPL3')
-install=$pkgname.install
-depends=()
-optdepends=('emacs')
-source=(http://cx4a.org/pub/auto-complete/$pkgname-$pkgver.tar.bz2)
-md5sums=('0ffdc1223d40b8ebc57495e33708ceea')
-
-build() {
- cd "$srcdir/$pkgname-$pkgver"
- make
-}
-
-package() {
- cd "$srcdir/$pkgname-$pkgver"
- mkdir -p $pkgdir/usr/share/$pkgname
- mkdir -p $pkgdir/usr/share/emacs/site-lisp/
- make DIR="$pkgdir/usr/share/$pkgname" install
- ln -s /usr/share/$pkgname $pkgdir/usr/share/emacs/site-lisp/$pkgname
-}
-
-# vim:set ts=2 sw=2 et:
diff --git a/pcr/auto-complete/auto-complete.install b/pcr/auto-complete/auto-complete.install
deleted file mode 100644
index 9687f5e43..000000000
--- a/pcr/auto-complete/auto-complete.install
+++ /dev/null
@@ -1,21 +0,0 @@
-post_install()
-{
-echo " "
-echo "==================================================================="
-echo " "
-echo "Add the following code to your .emacs:"
-
-echo "(add-to-list 'load-path \"/usr/share/emacs/site-lisp/auto-complete\")"
-echo "(require 'auto-complete-config)"
-echo "(add-to-list 'ac-dictionary-directories \"/usr/share/emacs/site-lisp/auto-complete/ac-dict\")"
-echo "(ac-config-default)"
-echo " "
-echo "==================================================================="
-echo " "
-
-}
-
-post_upgrade()
-{
- post_install
-}