Revision 11072,
1.3 KB
checked in by iwaim, 6 years ago
(diff) |
new: universal-ctags
|
Rev | Line | |
---|
[11072] | 1 | %define ver 0.0.0 |
---|
| 2 | %define rel 1 |
---|
| 3 | %define gitrev 66ba533c |
---|
| 4 | |
---|
| 5 | Summary: a programming language indexing and/or cross-reference tool |
---|
| 6 | Name: universal-ctags |
---|
| 7 | Version: %{ver} |
---|
| 8 | Release: %{rel}.git%{gitrev}%{?_dist_release} |
---|
| 9 | Source0: %{name}-%{version}.git%{gitrev}.tar.xz |
---|
| 10 | License: GPLv2 |
---|
| 11 | Group: Development/Tools |
---|
| 12 | URL: http://ctags.io/ |
---|
| 13 | Conflicts: ctags |
---|
| 14 | Provides: ctags |
---|
| 15 | |
---|
| 16 | BuildRoot: %{_tmppath}/%{name}-%{version}-root |
---|
| 17 | BuildRequires: python-docutils |
---|
| 18 | |
---|
| 19 | Vendor: Project Vine |
---|
| 20 | Distribution: Vine Linux |
---|
| 21 | Packager: iwaim |
---|
| 22 | |
---|
| 23 | %description |
---|
| 24 | Universal-ctags was created to continue the development of Darren Hiebert’s |
---|
| 25 | Exuberant-ctags after activity on that project unfortunately stalled. |
---|
| 26 | |
---|
| 27 | %prep |
---|
| 28 | %setup -q -n %{name}-%{version}.git%{gitrev} |
---|
| 29 | |
---|
| 30 | |
---|
| 31 | %build |
---|
| 32 | ./autogen.sh |
---|
| 33 | %configure --enable-iconv |
---|
| 34 | %{__make} %{?_smp_mflags} |
---|
| 35 | |
---|
| 36 | |
---|
| 37 | %install |
---|
| 38 | %{__rm} -rf ${RPM_BUILD_ROOT} |
---|
| 39 | %{__make} install DESTDIR=${RPM_BUILD_ROOT} |
---|
| 40 | %{__make} install-man DESTDIR=${RPM_BUILD_ROOT} |
---|
| 41 | |
---|
| 42 | |
---|
| 43 | %clean |
---|
| 44 | %{__rm} -rf ${RPM_BUILD_ROOT} |
---|
| 45 | |
---|
| 46 | |
---|
| 47 | %files |
---|
| 48 | %defattr(-,root,root) |
---|
| 49 | %doc COPYING README.md |
---|
| 50 | %{_bindir}/ctags |
---|
| 51 | %{_bindir}/readtags |
---|
| 52 | %{_mandir}/man1/ctags.1* |
---|
| 53 | %dir %{_libexecdir}/ctags |
---|
| 54 | %dir %{_libexecdir}/ctags/drivers |
---|
| 55 | %{_libexecdir}/ctags/drivers/coffeetags |
---|
| 56 | |
---|
| 57 | %changelog |
---|
| 58 | * Wed May 17 2017 IWAI, Masaharu <iwaim.sub@gmail.com> 0.0.0-1.git66ba533c |
---|
| 59 | - initial build for Vine Linux |
---|
| 60 | |
---|
Note: See
TracBrowser
for help on using the repository browser.