summaryrefslogtreecommitdiff
path: root/pcr/auto-complete
diff options
context:
space:
mode:
authorNicolás Reynolds <fauno@endefensadelsl.org>2014-01-28 03:27:16 +0000
committerNicolás Reynolds <fauno@endefensadelsl.org>2014-01-28 03:27:16 +0000
commit462391357aa5e749dc9908c15f3baa0b4416f3d8 (patch)
tree11d4d3f054aae9ffd869adc634054f64a16d83b8 /pcr/auto-complete
parent748e32a3a886569b58a27003e85b76be5746153d (diff)
Tue Jan 28 03:22:21 UTC 2014
Diffstat (limited to 'pcr/auto-complete')
-rwxr-xr-xpcr/auto-complete/PKGBUILD30
-rwxr-xr-xpcr/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 100755
index afa9d8691..000000000
--- a/pcr/auto-complete/PKGBUILD
+++ /dev/null
@@ -1,30 +0,0 @@
-# Contributor: 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 100755
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
-}