bare/pcre: Add PCRE 8.40

This commit is contained in:
Chris Johns 2019-09-14 17:01:23 +10:00
parent 9725bad7fd
commit 5684292a80
2 changed files with 89 additions and 0 deletions

View File

@ -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

View File

@ -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}