source: projects/specs/trunk/u/universal-ctags/universal-ctags-vl.spec @ 11072

Revision 11072, 1.3 KB checked in by iwaim, 7 years ago (diff)

new: universal-ctags

Line 
1%define ver 0.0.0
2%define rel 1
3%define gitrev 66ba533c
4
5Summary: a programming language indexing and/or cross-reference tool
6Name: universal-ctags
7Version: %{ver}
8Release: %{rel}.git%{gitrev}%{?_dist_release}
9Source0: %{name}-%{version}.git%{gitrev}.tar.xz
10License: GPLv2
11Group: Development/Tools
12URL: http://ctags.io/
13Conflicts: ctags
14Provides: ctags
15
16BuildRoot: %{_tmppath}/%{name}-%{version}-root
17BuildRequires: python-docutils
18
19Vendor: Project Vine
20Distribution: Vine Linux
21Packager: iwaim
22
23%description
24Universal-ctags was created to continue the development of Darren Hiebert’s
25Exuberant-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.