This commit is contained in:
John Voltz 2008-04-24 16:56:06 +00:00
parent 676797d57f
commit 3dfdc14180
3 changed files with 24 additions and 0 deletions

View File

@ -56,6 +56,7 @@ source "package/oprofile/Config.in"
source "package/pkgconfig/Config.in"
source "package/readline/Config.in"
source "package/valgrind/Config.in"
source "package/pcre/Config.in"
comment "Other stuff"
source "package/at/Config.in"

5
package/pcre/Config.in Normal file
View File

@ -0,0 +1,5 @@
config BR2_PACKAGE_PCRE
bool "pcre"
default n
help
Perl Compatible Regular Expressions

18
package/pcre/pcre.mk Normal file
View File

@ -0,0 +1,18 @@
#############################################################
#
# PCRE
#
#############################################################
PCRE_VERSION = 7.6
PCRE_SOURCE = pcre-$(PCRE_VERSION).tar.bz2
PCRE_SITE = ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre
PCRE_INSTALL_STAGING = YES
PCRE_INSTALL_TARGET = YES
PCRE_CONF_OPT = --target=$(GNU_TARGET_NAME) --host=$(GNU_TARGET_NAME) \
--build=$(GNU_HOST_NAME) --prefix=/usr \
--includedir=/usr/include
PCRE_DEPENDENCIES = uclibc
$(eval $(call AUTOTARGETS,package,pcre))