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:
parent
048f2ca063
commit
650d3650ce
5 changed files with 10 additions and 10 deletions
|
|
@ -5,9 +5,9 @@ if [[ ! -d /tmp/output/debian-10 ]]; then
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# R 3.x requires PCRE1
|
# R 3.x requires PCRE1
|
||||||
pcre_lib='libpcre2-8-0'
|
pcre_lib='libpcre2-dev'
|
||||||
if [[ "${R_VERSION}" =~ ^3 ]]; then
|
if [[ "${R_VERSION}" =~ ^3 ]]; then
|
||||||
pcre_lib='libpcre3'
|
pcre_lib='libpcre3-dev'
|
||||||
fi
|
fi
|
||||||
|
|
||||||
fpm \
|
fpm \
|
||||||
|
|
|
||||||
|
|
@ -5,9 +5,9 @@ if [[ ! -d /tmp/output/debian-9 ]]; then
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# R 3.x requires PCRE1
|
# R 3.x requires PCRE1
|
||||||
pcre_lib='libpcre2-8-0'
|
pcre_lib='libpcre2-dev'
|
||||||
if [[ "${R_VERSION}" =~ ^3 ]]; then
|
if [[ "${R_VERSION}" =~ ^3 ]]; then
|
||||||
pcre_lib='libpcre3'
|
pcre_lib='libpcre3-dev'
|
||||||
fi
|
fi
|
||||||
|
|
||||||
fpm \
|
fpm \
|
||||||
|
|
|
||||||
|
|
@ -5,9 +5,9 @@ if [[ ! -d /tmp/output/ubuntu-1604 ]]; then
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# R 3.x requires PCRE1
|
# R 3.x requires PCRE1
|
||||||
pcre_lib='libpcre2-8-0'
|
pcre_lib='libpcre2-dev'
|
||||||
if [[ "${R_VERSION}" =~ ^3 ]]; then
|
if [[ "${R_VERSION}" =~ ^3 ]]; then
|
||||||
pcre_lib='libpcre3'
|
pcre_lib='libpcre3-dev'
|
||||||
fi
|
fi
|
||||||
|
|
||||||
fpm \
|
fpm \
|
||||||
|
|
|
||||||
|
|
@ -5,9 +5,9 @@ if [[ ! -d /tmp/output/ubuntu-1804 ]]; then
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# R 3.x requires PCRE1
|
# R 3.x requires PCRE1
|
||||||
pcre_lib='libpcre2-8-0'
|
pcre_lib='libpcre2-dev'
|
||||||
if [[ "${R_VERSION}" =~ ^3 ]]; then
|
if [[ "${R_VERSION}" =~ ^3 ]]; then
|
||||||
pcre_lib='libpcre3'
|
pcre_lib='libpcre3-dev'
|
||||||
fi
|
fi
|
||||||
|
|
||||||
fpm \
|
fpm \
|
||||||
|
|
|
||||||
|
|
@ -5,9 +5,9 @@ if [[ ! -d /tmp/output/ubuntu-2004 ]]; then
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# R 3.x requires PCRE1
|
# R 3.x requires PCRE1
|
||||||
pcre_lib='libpcre2-8-0'
|
pcre_lib='libpcre2-dev'
|
||||||
if [[ "${R_VERSION}" =~ ^3 ]]; then
|
if [[ "${R_VERSION}" =~ ^3 ]]; then
|
||||||
pcre_lib='libpcre3'
|
pcre_lib='libpcre3-dev'
|
||||||
fi
|
fi
|
||||||
|
|
||||||
fpm \
|
fpm \
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue