Switch to dev PCRE in Ubuntu/Debian packages

For consistency with CentOS and SUSE, and because packages that
link against libR like rJava need PCRE dev headers to install
from source.
This commit is contained in:
Greg Lin 2020-05-14 13:56:58 -05:00
commit 650d3650ce
5 changed files with 10 additions and 10 deletions

View file

@ -5,9 +5,9 @@ if [[ ! -d /tmp/output/debian-10 ]]; then
fi
# R 3.x requires PCRE1
pcre_lib='libpcre2-8-0'
pcre_lib='libpcre2-dev'
if [[ "${R_VERSION}" =~ ^3 ]]; then
pcre_lib='libpcre3'
pcre_lib='libpcre3-dev'
fi
fpm \

View file

@ -5,9 +5,9 @@ if [[ ! -d /tmp/output/debian-9 ]]; then
fi
# R 3.x requires PCRE1
pcre_lib='libpcre2-8-0'
pcre_lib='libpcre2-dev'
if [[ "${R_VERSION}" =~ ^3 ]]; then
pcre_lib='libpcre3'
pcre_lib='libpcre3-dev'
fi
fpm \

View file

@ -5,9 +5,9 @@ if [[ ! -d /tmp/output/ubuntu-1604 ]]; then
fi
# R 3.x requires PCRE1
pcre_lib='libpcre2-8-0'
pcre_lib='libpcre2-dev'
if [[ "${R_VERSION}" =~ ^3 ]]; then
pcre_lib='libpcre3'
pcre_lib='libpcre3-dev'
fi
fpm \

View file

@ -5,9 +5,9 @@ if [[ ! -d /tmp/output/ubuntu-1804 ]]; then
fi
# R 3.x requires PCRE1
pcre_lib='libpcre2-8-0'
pcre_lib='libpcre2-dev'
if [[ "${R_VERSION}" =~ ^3 ]]; then
pcre_lib='libpcre3'
pcre_lib='libpcre3-dev'
fi
fpm \

View file

@ -5,9 +5,9 @@ if [[ ! -d /tmp/output/ubuntu-2004 ]]; then
fi
# R 3.x requires PCRE1
pcre_lib='libpcre2-8-0'
pcre_lib='libpcre2-dev'
if [[ "${R_VERSION}" =~ ^3 ]]; then
pcre_lib='libpcre3'
pcre_lib='libpcre3-dev'
fi
fpm \