summaryrefslogtreecommitdiff
path: root/discount.spec
blob: 7d437421e18b3ff6df83b11da21bdf1358fb6d39 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
Summary:	A command-line utility for converting Markdown files into HTML
Name:		discount
Version:	2.1.8
Release:	1
License:	BSD
Group:		Applications
Source0:	http://www.pell.portland.or.us/~orc/Code/discount/%{name}-%{version}.tar.gz
# Source0-md5:	fcb1e7a3d19c2e666655fa8a28066e76
URL:		http://www.pell.portland.or.us/~orc/Code/discount
Patch0:		%{name}-ldconfig.patch
Requires:	libmarkdown = %{version}-%{release}
BuildRoot:	%{tmpdir}/%{name}-%{version}-root-%(id -u -n)

%description
DISCOUNT is an implementation of John Gruber's Markdown language in C.
It includes all of the original Markdown features, along with a few
extensions, and passes the Markdown test suite.

%package -n libmarkdown
Summary:	A fast implementation of the Markdown language in C
Group:		Libraries

%description -n libmarkdown
libmarkdown is the library portion of discount, a fast Markdown
language implementation, written in C.

%package -n libmarkdown-devel
Summary:	Development headers for the libmarkdown library
Group:		Development/Libraries
Requires:	libmarkdown = %{version}-%{release}

%description -n libmarkdown-devel
This package contains development headers and developer-oriented man
pages for libmarkdown.

%prep
%setup -q
%patch0

%build
# NOTE: not autoconf based configure
CC="%{__cc}" \
CFLAGS="%{rpmcflags}" \
LDFLAGS="%{rpmldflags}" \
./configure.sh \
	--shared \
	--prefix=%{_prefix} \
	--execdir=%{_bindir} \
	--libdir=%{_libdir} \
	--mandir=%{_mandir} \
	--enable-all-features \
	--with-fenced-code

%{__make}

%if %{with tests}
%{__make} test
%endif

%install
rm -rf $RPM_BUILD_ROOT
%{__make} install.everything \
	DESTDIR=$RPM_BUILD_ROOT

# Rename sample programs (names are too generic) and matching man1 pages
mv $RPM_BUILD_ROOT%{_bindir}/makepage $RPM_BUILD_ROOT%{_bindir}/discount-makepage
mv $RPM_BUILD_ROOT%{_bindir}/mkd2html $RPM_BUILD_ROOT%{_bindir}/discount-mkd2html
mv $RPM_BUILD_ROOT%{_bindir}/theme $RPM_BUILD_ROOT%{_bindir}/discount-theme
mv $RPM_BUILD_ROOT%{_mandir}/man1/makepage.1 \
   $RPM_BUILD_ROOT%{_mandir}/man1/discount-makepage.1
mv $RPM_BUILD_ROOT%{_mandir}/man1/mkd2html.1 \
   $RPM_BUILD_ROOT%{_mandir}/man1/discount-mkd2html.1
mv $RPM_BUILD_ROOT%{_mandir}/man1/theme.1 \
   $RPM_BUILD_ROOT%{_mandir}/man1/discount-theme.1

%clean
rm -rf $RPM_BUILD_ROOT

%post	-n libmarkdown -p /sbin/ldconfig
%postun	-n libmarkdown -p /sbin/ldconfig

%files
%defattr(644,root,root,755)
%attr(755,root,root) %{_bindir}/markdown
%attr(755,root,root) %{_bindir}/discount-makepage
%attr(755,root,root) %{_bindir}/discount-mkd2html
%attr(755,root,root) %{_bindir}/discount-theme
%{_mandir}/man1/markdown.1*
%{_mandir}/man7/markdown.7*
%{_mandir}/man1/discount-*.1*
%{_mandir}/man7/mkd-*.7*

%files -n libmarkdown
%defattr(644,root,root,755)
%doc README COPYRIGHT CREDITS
%attr(755,root,root) %{_libdir}/libmarkdown.so.*.*.*
%ghost %{_libdir}/libmarkdown.so.2

%files -n libmarkdown-devel
%defattr(644,root,root,755)
%{_libdir}/libmarkdown.so
%{_includedir}/mkdio.h
%{_mandir}/man3/markdown.3*
%{_mandir}/man3/mkd_*.3*
%{_mandir}/man3/mkd-*.3*