]> git.pld-linux.org Git - projects/template-specs.git/blame - vim-plugin.spec
update to use _noautoreq_pear
[projects/template-specs.git] / vim-plugin.spec
CommitLineData
35c80078 1# TODO:
2# - What to do with .vimup file?
2f567173 3%define plugin NAME
35c80078 4Summary: Vim plugin: NAME
2f567173
ER
5Name: vim-plugin-%{plugin}
6Version: 0.1
7Release: 0.1
8License: Vim
35c80078 9Group: Applications/Editors/Vim
2f567173 10Source0: http://www.vim.org/scripts/download_script.php?src_id=xxx#/%{plugin}.zip
35c80078 11# Source0-md5: -
12URL: -
13# for _vimdatadir
fcd774dd 14Requires: vim-rt >= 4:7.2.170
35c80078 15BuildArch: noarch
16BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
17
fcd774dd 18%define _vimdatadir %{_datadir}/vim
35c80078 19
20%description
21Vim plugin for foo and even bar.
22
23%prep
24%setup -qc
25
26%install
27rm -rf $RPM_BUILD_ROOT
28install -d $RPM_BUILD_ROOT%{_vimdatadir}
29cp -a . $RPM_BUILD_ROOT%{_vimdatadir}
30
31%clean
32rm -rf $RPM_BUILD_ROOT
33
34%files
35%defattr(644,root,root,755)
2f567173
ER
36%doc %{_vimdatadir}/doc/*.txt
37%{_vimdatadir}/plugin/*.vim
This page took 0.032366 seconds and 4 git commands to generate.