]> git.pld-linux.org Git - packages/cmark.git/commitdiff
- new
authorJan Rękorajski <baggins@pld-linux.org>
Mon, 12 Feb 2018 20:35:19 +0000 (21:35 +0100)
committerJan Rękorajski <baggins@pld-linux.org>
Mon, 12 Feb 2018 20:35:19 +0000 (21:35 +0100)
cmark.spec [new file with mode: 0644]

diff --git a/cmark.spec b/cmark.spec
new file mode 100644 (file)
index 0000000..46645a0
--- /dev/null
@@ -0,0 +1,100 @@
+#
+# Conditional build:
+%bcond_without static_libs     # don't build static libraries
+#
+Summary:       CommonMark parsing and rendering program
+Name:          cmark
+Version:       0.28.3
+Release:       1
+License:       BSD and MIT
+Group:         Libraries
+Source0:       https://github.com/CommonMark/cmark/archive/%{version}/%{name}-%{version}.tar.gz
+# Source0-md5: 324440a52a131ac24f2710b073865b7c
+URL:           https://github.com/CommonMark/cmark
+BuildRequires: cmake
+Requires:      %{name}-lib = %{version}-%{release}
+BuildRoot:     %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
+
+%description
+Cmark is the C reference implementation of CommonMark, a rationalized
+version of Markdown syntax with a spec.
+
+%package lib
+Summary:       CommonMark parsing and rendering library
+Group:         Libraries
+
+%description lib
+Cmark is the C reference implementation of CommonMark, a rationalized
+version of Markdown syntax with a spec.
+
+%package devel
+Summary:       Header files for %{name} library
+Summary(pl.UTF-8):     Pliki nagłówkowe biblioteki %{name}
+Group:         Development/Libraries
+Requires:      %{name}-lib = %{version}-%{release}
+
+%description devel
+Header files for %{name} library.
+
+%description devel -l pl.UTF-8
+Pliki nagłówkowe biblioteki %{name}.
+
+%package static
+Summary:       Static %{name} library
+Summary(pl.UTF-8):     Statyczna biblioteka %{name}
+Group:         Development/Libraries
+Requires:      %{name}-devel = %{version}-%{release}
+
+%description static
+Static %{name} library.
+
+%description static -l pl.UTF-8
+Statyczna biblioteka %{name}.
+
+%prep
+%setup -q
+
+%build
+mkdir build
+cd build
+%{cmake} \
+       ../
+
+%{__make}
+
+%install
+rm -rf $RPM_BUILD_ROOT
+
+%{__make} -C build install \
+       DESTDIR=$RPM_BUILD_ROOT
+
+%clean
+rm -rf $RPM_BUILD_ROOT
+
+%post  -p /sbin/ldconfig
+%postun        -p /sbin/ldconfig
+
+%files
+%defattr(644,root,root,755)
+%attr(755,root,root) %{_bindir}/cmark
+%{_mandir}/man1/cmark.1*
+
+%files lib
+%defattr(644,root,root,755)
+%attr(755,root,root) %{_libdir}/libcmark.so.*.*.*
+
+%files devel
+%defattr(644,root,root,755)
+%doc README.md changelog.txt
+%attr(755,root,root) %{_libdir}/libcmark.so
+%{_includedir}/cmark*.h
+%{_pkgconfigdir}/libcmark.pc
+%{_libdir}/cmake/cmark-pld.cmake
+%{_libdir}/cmake/cmark.cmake
+%{_mandir}/man3/cmark.3*
+
+%if %{with static_libs}
+%files static
+%defattr(644,root,root,755)
+%{_libdir}/libcmark.a
+%endif
This page took 0.08489 seconds and 4 git commands to generate.