]> git.pld-linux.org Git - projects/template-specs.git/blob - vim-plugin.spec
- CHANGES is quite common too
[projects/template-specs.git] / vim-plugin.spec
1 # TODO:
2 # - What to do with .vimup file?
3 Summary:        Vim plugin: NAME
4 Name:           vim-plugin-NAME
5 Version:        3.0
6 Release:        %{gitver}.0.1
7 License:        vim
8 Group:          Applications/Editors/Vim
9 Source0:        -
10 # Source0-md5:  -
11 URL:            -
12 # for _vimdatadir
13 Requires:       vim-rt >= 4:6.3.058-3
14 BuildArch:      noarch
15 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
16
17 %define         _vimdatadir     %{_datadir}/vim/vimfiles
18
19 %description
20 Vim plugin for foo and even bar.
21
22 %prep
23 %setup -qc
24
25 %install
26 rm -rf $RPM_BUILD_ROOT
27 install -d $RPM_BUILD_ROOT%{_vimdatadir}
28 cp -a . $RPM_BUILD_ROOT%{_vimdatadir}
29
30 %clean
31 rm -rf $RPM_BUILD_ROOT
32
33 %files
34 %defattr(644,root,root,755)
35 %{_vimdatadir}/*
This page took 0.269508 seconds and 3 git commands to generate.