diff options
author | Anas Nashif <anas.nashif@intel.com> | 2012-11-08 12:01:22 -0800 |
---|---|---|
committer | Kévin THIERRY <kevin.thierry@open.eurogiciel.org> | 2014-11-12 14:08:13 +0100 |
commit | d0a5942270a6dc78780ce49d4ff045fd0b375738 (patch) | |
tree | 3fcd90ef6b5f3b3d8fa54c91c85426676d7e9d26 | |
parent | a1b8110f78243dcbfd4f05eef8b737cf30cb1cdd (diff) | |
download | libxslt-d0a5942270a6dc78780ce49d4ff045fd0b375738.tar.gz libxslt-d0a5942270a6dc78780ce49d4ff045fd0b375738.tar.bz2 libxslt-d0a5942270a6dc78780ce49d4ff045fd0b375738.zip |
add packaging
-rw-r--r-- | packaging/libxslt.spec | 104 | ||||
-rw-r--r-- | packaging/xslt-config.1.gz | bin | 0 -> 472 bytes |
2 files changed, 104 insertions, 0 deletions
diff --git a/packaging/libxslt.spec b/packaging/libxslt.spec new file mode 100644 index 00000000..197a0a75 --- /dev/null +++ b/packaging/libxslt.spec @@ -0,0 +1,104 @@ +Name: libxslt +%define soname %{name} +Version: 1.1.26 +Release: 0 +Summary: XSL Transformation Library +License: MIT and GPL-2.0+ +Group: System/Libraries +# +Url: http://xmlsoft.org/XSLT/ +Source: %{name}-%{version}.tar.bz2 +Source2: baselibs.conf +Source3: xslt-config.1.gz +BuildRequires: libgcrypt-devel +BuildRequires: libgpg-error-devel +BuildRequires: libtool +BuildRequires: libxml2-devel +BuildRequires: pkg-config + +%description +This C library allows you to transform XML files into other XML files +(or HTML, text, and more) using the standard XSLT stylesheet +transformation mechanism. + +It is based on libxml (version 2) for XML parsing, tree manipulation, +and XPath support. It is written in plain C, making as few assumptions +as possible and sticks closely to ANSI C/POSIX for easy embedding. +Although not primarily designed with performance in mind, libxslt seems +to be a relatively fast processor. It also includes full support for +the EXSLT set of extension functions as well as some common extensions +present in other XSLT engines. + + +%package devel +Summary: Include Files and Libraries mandatory for Development +License: LGPL-2.1+ +Group: Development/Libraries/C and C++ +Requires: %{name}-tools = %version +Requires: %{soname} = %{version} +Requires: glibc-devel +Requires: libgcrypt-devel +Requires: libgpg-error-devel +#libxml is automatically required with pkgconfig + +%description devel +This package contains all necessary include files and libraries needed +to develop applications that require these. + +%package tools +Summary: Extended Stylesheet Language (XSL) Transformation utilities +License: MIT and GPL-2.0+ +Group: Development/Tools +Provides: xsltproc = %version-%release + +%description tools +This package contains xsltproc, a command line interface to the XSLT engine. + +%prep +%setup -q + +%build +autoreconf --force --install +%configure --disable-static --with-pic --without-python +make %{?_smp_mflags} + +%check +%if ! 0%{?qemu_user_space_build} +make check +%endif + +%install +%make_install + +# Unwanted doc stuff +rm -fr %{buildroot}%{_datadir}/doc + +# the manual page is required +install -ma=r '-t%{buildroot}%{_mandir}/man1' '%{SOURCE3}' + + +%post -n %{soname} -p /sbin/ldconfig + +%postun -n %{soname} -p /sbin/ldconfig + +%files -n %{soname} +%defattr(-, root, root) +%{_libdir}/lib*.so.* + +%files devel +%defattr(-, root, root) +%{_libdir}/lib*.so +%{_libdir}/*.sh +%{_libdir}/pkgconfig/*.pc +%{_includedir}/* +%{_datadir}/aclocal/* +%{_bindir}/xslt-config +%doc %{_mandir}/man1/xslt-config.* +%doc %{_mandir}/man3/* + +%files tools +%defattr(-,root,root) +%{_bindir}/xsltproc +%doc %{_mandir}/man1/xsltproc.* + +%changelog diff --git a/packaging/xslt-config.1.gz b/packaging/xslt-config.1.gz Binary files differnew file mode 100644 index 00000000..6d437750 --- /dev/null +++ b/packaging/xslt-config.1.gz |