summaryrefslogtreecommitdiffstats
path: root/source-builder
diff options
context:
space:
mode:
authorChris Johns <chrisj@rtems.org>2019-09-14 17:01:23 +1000
committerChris Johns <chrisj@rtems.org>2019-09-16 08:21:40 +1000
commit5684292a800f3d4a619e002a92469aada7fe01db (patch)
tree08ed7d4e5e818ea2a92fb6389a1b65ac3b349f0b /source-builder
parentsb/check-command: Add a check command wrapper (diff)
downloadrtems-source-builder-5684292a800f3d4a619e002a92469aada7fe01db.tar.bz2
bare/pcre: Add PCRE 8.40
Diffstat (limited to 'source-builder')
-rw-r--r--source-builder/config/pcre-8-1.cfg70
1 files changed, 70 insertions, 0 deletions
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}