diff options
Diffstat (limited to 'pcr/doxymacs')
-rw-r--r-- | pcr/doxymacs/PKGBUILD | 26 | ||||
-rw-r--r-- | pcr/doxymacs/doxymacs.install | 19 |
2 files changed, 0 insertions, 45 deletions
diff --git a/pcr/doxymacs/PKGBUILD b/pcr/doxymacs/PKGBUILD deleted file mode 100644 index 09a46a0ae..000000000 --- a/pcr/doxymacs/PKGBUILD +++ /dev/null @@ -1,26 +0,0 @@ -# Contributor: Limao Luo <luolimao+AUR@gmail.com> -# Maintainer : Parabola GNU / Linux-libre Aurelien Desbrieres <aurelien@cwb.io> - -pkgname=doxymacs -pkgver=1.8.0 -pkgrel=2 -pkgdesc="Use Doxygen from within {X}Emacs" -arch=(i686 x86_64) -url=http://$pkgname.sourceforge.net -license=(GPL) -depends=('libxml2>=2.6.13') -install=$pkgname.install -source=(http://downloads.sourceforge.net/sourceforge/$pkgname/$pkgname-$pkgver.tar.gz) -sha256sums=('a23fd833bc3c21ee5387c62597610941e987f9d4372916f996bf6249cc495afa') -sha512sums=('7461a8a415aadf331f856e4f122712cbedc2907eff9e452f24e6ee83b96903d9944d2cfdbcfeab8a66144a0be508eae723c29f82a081df9723560b10c444f8ac') - -build() { - cd "$srcdir"/$pkgname-$pkgver/ - ./configure --prefix=/usr - make -} - -package() { - cd "$srcdir"/$pkgname-$pkgver/ - make DESTDIR="$pkgdir" install -} diff --git a/pcr/doxymacs/doxymacs.install b/pcr/doxymacs/doxymacs.install deleted file mode 100644 index 9d8366f45..000000000 --- a/pcr/doxymacs/doxymacs.install +++ /dev/null @@ -1,19 +0,0 @@ -post_install() { - cat <<__EOF__ -====> Put (require 'doxymacs) in your .emacs -====> Invoke doxymacs-mode with M-x doxymacs-mode. -====> To have doxymacs-mode invoked automatically when in C/C++ mode, put -(add-hook 'c-mode-common-hook 'doxymacs-mode) -====> in your .emacs. -====> If you want Doxygen keywords fontified use M-x doxymacs-font-lock. -====> To do it automatically in C and C++ modes, add the following to your .emacs: -(defun my-doxymacs-font-lock-hook () - (if (or (eq major-mode 'c-mode) (eq major-mode 'c++-mode)) - (doxymacs-font-lock))) -(add-hook 'font-lock-mode-hook 'my-doxymacs-font-lock-hook) -__EOF__ -} - -post_upgrade() { - post_install -} |