mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-28 22:57:37 +00:00
25 lines
775 B
Bash
25 lines
775 B
Bash
# $Id: PKGBUILD 49635 2009-08-14 06:19:00Z tobias $
|
|
# Maintainer : Aaron Griffin <aaron@archlinux.org>
|
|
|
|
pkgname=vim-doxygentoolkit
|
|
pkgver=0.2.4
|
|
_scriptid=10579
|
|
pkgrel=2
|
|
pkgdesc="simplify doxygen documentation in C/C++."
|
|
arch=(i686 x86_64)
|
|
url="http://www.vim.org/scripts/script.php?script_id=987"
|
|
license=('GPL')
|
|
depends=(vim)
|
|
groups=('vim-plugins')
|
|
source=(http://www.vim.org/scripts/download_script.php?src_id=$_scriptid)
|
|
md5sums=('3e31f950a7e5ba53c68a11ef9ac42428')
|
|
sha256sums=('2eb4954448cbced827dfa341d347c2b53d918814662e0d0c5b30067aedfa1e01')
|
|
|
|
build() {
|
|
cd $srcdir
|
|
mv download_script.php?src_id=$_scriptid DoxygenToolkit.vim
|
|
|
|
installpath="$pkgdir/usr/share/vim/vimfiles"
|
|
|
|
install -D -m644 DoxygenToolkit.vim $installpath/plugin/DoxygenToolkit.vim || return 1
|
|
}
|