diff options
author | André Fabian Silva Delgado <emulatorman@parabola.nu> | 2014-12-11 15:36:46 -0200 |
---|---|---|
committer | André Fabian Silva Delgado <emulatorman@parabola.nu> | 2014-12-11 15:36:46 -0200 |
commit | f4807465cdcea980522eaa847edb09b3f48face9 (patch) | |
tree | a6a2edb21a183c402bfd42bc2d88cabcf4daa18c /pcr/vim-pydiction/PKGBUILD | |
parent | df2d8d4f7b6c6dbf1d8d767d12f74fa596241a6b (diff) | |
parent | 39e618c6933e28a1cf2939ec11c378e84d17cec6 (diff) | |
download | abslibre-f4807465cdcea980522eaa847edb09b3f48face9.tar.gz abslibre-f4807465cdcea980522eaa847edb09b3f48face9.tar.bz2 abslibre-f4807465cdcea980522eaa847edb09b3f48face9.zip |
Merge branch 'master' of ssh://projects.parabola.nu/~git/abslibre/abslibre
Diffstat (limited to 'pcr/vim-pydiction/PKGBUILD')
-rw-r--r-- | pcr/vim-pydiction/PKGBUILD | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/pcr/vim-pydiction/PKGBUILD b/pcr/vim-pydiction/PKGBUILD new file mode 100644 index 000000000..f2cfa4ada --- /dev/null +++ b/pcr/vim-pydiction/PKGBUILD @@ -0,0 +1,28 @@ +# Maintainer : Aurelien Desbrieres <aurelien@hackers.camp> +# Contributor: Alireza Savand <alireza.savand@gmail.com> +# Contributor: lemanyk <lemanyk@gmail.com> +# Contributor: Florian Friesdorf <archlinux@chaoflow.net> +# Contributor: Laszlo Papp <djszapi @ gmail at com> + +pkgname=vim-pydiction +pkgver=1.2.3 +_scriptid=21842 +pkgrel=2 +pkgdesc="Allows you to auto-complete your Python code" +arch=('any') +url="http://www.vim.org/scripts/script.php?script_id=850" +license=('BSD') +groups=('vim-plugins') +depends=('vim' 'python2') +install='pydiction.install' +source=(${pkgname}.zip::http://www.vim.org/scripts/download_script.php?src_id=${_scriptid}) + +package() { + cd ${srcdir}/pydiction + + install -Dm755 pydiction.py ${pkgdir}/usr/bin/pydiction.py + install -Dm644 complete-dict ${pkgdir}/usr/share/pydiction/complete-dict + install -Dm644 after/ftplugin/python_pydiction.vim ${pkgdir}/usr/share/vim/vimfiles/ftplugin/python_pydiction.vim + install -Dm644 README.md ${pkgdir}/usr/share/doc/${pkgname}/README.txt +} + |