mirror of
https://github.com/void-linux/void-packages.git
synced 2025-08-14 00:32:56 +02:00
pcre: remove long_desc; cross build support.
This commit is contained in:
parent
e409d2ea2d
commit
ac8396c0dd
4 changed files with 12 additions and 19 deletions
|
@ -1,10 +1,6 @@
|
||||||
# Template file for 'libpcre'.
|
# Template file for 'libpcre'.
|
||||||
#
|
#
|
||||||
short_desc="${short_desc} - shared libraries"
|
short_desc="${short_desc} - shared libraries"
|
||||||
long_desc="${long_desc}
|
|
||||||
|
|
||||||
This package contains the shared libraries for use in client programs."
|
|
||||||
|
|
||||||
replaces="pcre<8.11"
|
replaces="pcre<8.11"
|
||||||
|
|
||||||
do_install() {
|
do_install() {
|
||||||
|
|
|
@ -1,10 +1,6 @@
|
||||||
# Template file for 'libpcrecpp'.
|
# Template file for 'libpcrecpp'.
|
||||||
#
|
#
|
||||||
short_desc="${short_desc} - C++ shared libraries"
|
short_desc="${short_desc} - C++ shared libraries"
|
||||||
long_desc="${long_desc}
|
|
||||||
|
|
||||||
This package contains the C++ shared library for use in
|
|
||||||
client programs."
|
|
||||||
|
|
||||||
do_install() {
|
do_install() {
|
||||||
vmove "usr/lib/libpcrecpp.so*" usr/lib
|
vmove "usr/lib/libpcrecpp.so*" usr/lib
|
||||||
|
|
|
@ -3,9 +3,6 @@
|
||||||
noarch=yes
|
noarch=yes
|
||||||
depends="zlib-devel bzip2-devel libpcre>=${version} libpcrecpp>=${version}"
|
depends="zlib-devel bzip2-devel libpcre>=${version} libpcrecpp>=${version}"
|
||||||
short_desc="${short_desc} (development files)"
|
short_desc="${short_desc} (development files)"
|
||||||
long_desc="${long_desc}
|
|
||||||
|
|
||||||
This package contains files for development, headers, static libs, etc."
|
|
||||||
|
|
||||||
do_install() {
|
do_install() {
|
||||||
vmove usr/bin/pcre-config usr/bin
|
vmove usr/bin/pcre-config usr/bin
|
||||||
|
|
|
@ -1,23 +1,27 @@
|
||||||
# Template file for 'pcre'
|
# Template file for 'pcre'
|
||||||
pkgname=pcre
|
pkgname=pcre
|
||||||
version=8.32
|
version=8.32
|
||||||
revision=1
|
revision=2
|
||||||
subpackages="libpcre libpcrecpp pcre-devel"
|
subpackages="libpcre libpcrecpp pcre-devel"
|
||||||
build_style=gnu-configure
|
build_style=gnu-configure
|
||||||
configure_args="--enable-utf8 --enable-unicode-properties --with-pic
|
configure_args="--enable-utf8 --enable-unicode-properties --with-pic
|
||||||
--enable-pcregrep-libz --enable-pcregrep-libbz2 --enable-newline-is-anycrlf
|
--enable-pcregrep-libz --enable-pcregrep-libbz2 --enable-newline-is-anycrlf
|
||||||
--enable-pcretest-libreadline --disable-pcregrep-jit --enable-jit
|
--enable-pcretest-libreadline --disable-pcregrep-jit --enable-jit
|
||||||
--disable-static"
|
--disable-static"
|
||||||
makedepends="zlib-devel readline-devel"
|
makedepends="zlib-devel bzip2-devel readline-devel"
|
||||||
|
crossmakedepends="${makedepends}"
|
||||||
short_desc="Perl Compatible Regular Expressions"
|
short_desc="Perl Compatible Regular Expressions"
|
||||||
maintainer="Juan RP <xtraeme@gmail.com>"
|
maintainer="Juan RP <xtraeme@gmail.com>"
|
||||||
homepage="http://www.pcre.org/"
|
homepage="http://www.pcre.org/"
|
||||||
license="BSD"
|
license="BSD"
|
||||||
distfiles="${SOURCEFORGE_SITE}/pcre/pcre-$version.tar.bz2"
|
distfiles="${SOURCEFORGE_SITE}/pcre/pcre-$version.tar.bz2"
|
||||||
checksum=a913fb9bd058ef380a2d91847c3c23fcf98e92dc3b47cd08a53c021c5cde0f55
|
checksum=a913fb9bd058ef380a2d91847c3c23fcf98e92dc3b47cd08a53c021c5cde0f55
|
||||||
long_desc="
|
|
||||||
The PCRE library is a set of functions that implement regular expression
|
if [ "$XBPS_CROSS_TRIPLET" ]; then
|
||||||
pattern matching using the same syntax and semantics as Perl 5. PCRE
|
makedepends="automake ${makedepends}"
|
||||||
has its own native API, as well as a set of wrapper functions that
|
|
||||||
correspond to the POSIX regular expression API. The PCRE library is free,
|
pre_configure() {
|
||||||
even for building commercial software."
|
autoreconf -fi
|
||||||
|
}
|
||||||
|
|
||||||
|
fi
|
||||||
|
|
Loading…
Add table
Reference in a new issue