From 5684292a800f3d4a619e002a92469aada7fe01db Mon Sep 17 00:00:00 2001 From: Chris Johns Date: Sat, 14 Sep 2019 17:01:23 +1000 Subject: bare/pcre: Add PCRE 8.40 --- bare/config/devel/pcre-8.40-1.cfg | 19 +++++++++++ source-builder/config/pcre-8-1.cfg | 70 ++++++++++++++++++++++++++++++++++++++ 2 files changed, 89 insertions(+) create mode 100644 bare/config/devel/pcre-8.40-1.cfg create mode 100644 source-builder/config/pcre-8-1.cfg diff --git a/bare/config/devel/pcre-8.40-1.cfg b/bare/config/devel/pcre-8.40-1.cfg new file mode 100644 index 0000000..8627260 --- /dev/null +++ b/bare/config/devel/pcre-8.40-1.cfg @@ -0,0 +1,19 @@ +# +# PCRE +# + +%if %{release} == %{nil} +%define release 1 +%endif + +%include %{_configdir}/base.cfg + +%define pcre_version 8.40 +%hash sha512 pcre-%{pcre_version}.tar.bz2 tMJ+r73zO9ehOEZVsZNvS+O8Z0XAcjR+sm6YiJbFJmS9haxCRE2hvni24g9Ftsflkh9fIPWwdBtb09mETlvU4g== + +# +# The PCRE build instructions. We use 8.x Release 1. +# +%ifn %{pkgconfig check pcre} + %include %{_configdir}/pcre-8-1.cfg +%endif diff --git a/source-builder/config/pcre-8-1.cfg b/source-builder/config/pcre-8-1.cfg new file mode 100644 index 0000000..461967f --- /dev/null +++ b/source-builder/config/pcre-8-1.cfg @@ -0,0 +1,70 @@ +# +# PCRE - Perl Compatible Regular Expressions 0.x.x Version 1. +# +# This configuration file configure's, make's and install's pcre. +# + +%if %{release} == %{nil} +%define release 1 +%endif + +Name: pcre-%{pcre_version}-%{_host}-%{release} +Summary: The PCRE library is a set of functions that implement regular + expression pattern matching using the same syntax and semantics + as Perl 5. +Version: %{pcre_version} +Release: %{release} +URL: http://pcre.org/ +BuildRoot: %{_tmppath}/%{name}-root-%(%{__id_u} -n) + +# +# Source +# +%source set pcre https://ftp.pcre.org/pub/pcre/pcre-%{pcre_version}.tar.bz2 + +# +# Prepare the source code. +# +%prep + build_top=$(pwd) + + source_dir_pcre="pcre-%{pcre_version}" + %source setup pcre -q -n pcre-%{pcre_version} + %patch setup pcre -p1 + + cd ${build_top} + +%build + build_top=$(pwd) + + %{build_directory} + + mkdir -p ${build_dir} + cd ${build_dir} + + %{host_build_flags} + + ../${source_dir_pcre}/configure \ + --prefix=%{_prefix} \ + --bindir=%{_bindir} \ + --exec_prefix=%{_exec_prefix} \ + --includedir=%{_includedir} \ + --libdir=%{_libdir} \ + --libexecdir=%{_libexecdir} \ + --mandir=%{_mandir} \ + --infodir=%{_infodir} \ + --datadir=%{_datadir} \ + --build=%{_build} --host=%{_host} + + %{__make} %{?_smp_mflags} all + + cd ${build_top} + +%install + build_top=$(pwd) + + %{__rmdir} $SB_BUILD_ROOT + + cd ${build_dir} + %{__make} DESTDIR=$SB_BUILD_ROOT install + cd ${build_top} -- cgit v1.2.3