updated on Thu Jan 12 04:00:44 UTC 2012
[aur-mirror.git] / vimpdb / PKGBUILD
blobdc781916b0ff089025854ff9dbe97af759681326
1 # Contributor: Tim Diels <limyreth[at]gmail.com>
2 pkgname=vimpdb
3 pkgver='0.beta'
4 pkgrel=2
5 pkgdesc="A vim script for debugging python."
6 arch=(i686 x86_64)
7 url="http://code.google.com/p/vimpdb/"
8 license=('GPL3')
9 groups=()
10 depends=(vim python)
11 makedepends=(hd2u)
12 optdepends=()
13 provides=()
14 conflicts=()
15 replaces=()
16 backup=()
17 options=()
18 install=
19 source=('http://vimpdb.googlecode.com/files/VimPdb.tar')
20 noextract=()
21 md5sums=('ba777bb3f8f2dd991958f3011779c082')
23 build() {
24   cd ${srcdir}
26   dos2unix --d2u VimPdb.py VimPdb.vim
28   install --verbose -m 644 -D VimPdb.py \
29     ${pkgdir}/usr/share/vim/vimfiles/plugin/VimPdb.py || return 1
30   install --verbose -m 644 -D VimPdb.vim \
31     ${pkgdir}/usr/share/vim/vimfiles/plugin/VimPdb.vim || return 1
32   install --verbose -m 644 -D readme.txt \
33     ${pkgdir}/usr/share/doc/vimpdb/readme.txt || return 1
36 # vim:set ts=2 sw=2 et: