2006-07-18 13:39:42 +00:00
|
|
|
#
|
|
|
|
# Copyright (C) 2006 OpenWrt.org
|
|
|
|
#
|
|
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
|
|
# See /LICENSE for more information.
|
|
|
|
#
|
|
|
|
# $Id$
|
|
|
|
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
|
|
|
|
PKG_NAME:=pcre
|
2007-07-16 06:51:11 +00:00
|
|
|
PKG_VERSION:=7.2
|
|
|
|
PKG_RELEASE:=2
|
2006-07-18 13:39:42 +00:00
|
|
|
|
|
|
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2
|
|
|
|
PKG_SOURCE_URL:=@SF/pcre
|
2007-07-16 06:51:11 +00:00
|
|
|
PKG_MD5SUM:=53305db73855f1ff155dcd2c05d448d3
|
2006-07-18 13:39:42 +00:00
|
|
|
|
2006-10-28 22:43:08 +00:00
|
|
|
PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION)
|
|
|
|
|
2006-07-18 13:39:42 +00:00
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
|
|
|
|
define Package/libpcre
|
|
|
|
SECTION:=libs
|
|
|
|
CATEGORY:=Libraries
|
|
|
|
TITLE:=A Perl Compatible Regular Expression library
|
|
|
|
URL:=http://www.pcre.org/
|
|
|
|
endef
|
|
|
|
|
2007-07-16 06:51:11 +00:00
|
|
|
CONFIGURE_ARGS += \
|
|
|
|
--enable-shared \
|
|
|
|
--enable-static \
|
|
|
|
--enable-utf8 \
|
|
|
|
--disable-cpp
|
2006-07-18 13:39:42 +00:00
|
|
|
|
2007-07-16 06:51:11 +00:00
|
|
|
MAKE_FLAGS += \
|
|
|
|
$(TARGET_CONFIGURE_OPTS \
|
|
|
|
CFLAGS="$(TARGET_CFLAGS)" \
|
|
|
|
all
|
2006-07-18 13:39:42 +00:00
|
|
|
|
|
|
|
define Build/InstallDev
|
2007-10-07 03:20:26 +00:00
|
|
|
$(INSTALL_DIR) $(1)/usr/bin
|
|
|
|
$(CP) $(PKG_BUILD_DIR)/pcre-config $(1)/usr/bin/
|
|
|
|
$(INSTALL_DIR) $(1)/usr/include
|
|
|
|
$(CP) $(PKG_BUILD_DIR)/pcre{,posix}.h $(1)/usr/include/
|
|
|
|
$(INSTALL_DIR) $(1)/usr/lib
|
|
|
|
$(CP) $(PKG_BUILD_DIR)/.libs/libpcre{,posix}.{a,so*} $(1)/usr/lib/
|
2006-07-18 13:39:42 +00:00
|
|
|
endef
|
|
|
|
|
|
|
|
define Build/UninstallDev
|
|
|
|
rm -rf \
|
|
|
|
$(STAGING_DIR)/usr/bin/pcre-config \
|
|
|
|
$(STAGING_DIR)/usr/include/pcre{,posix}.h \
|
|
|
|
$(STAGING_DIR)/usr/lib/libpcre{,posix}.{a,so*}
|
|
|
|
endef
|
|
|
|
|
2006-10-28 22:43:08 +00:00
|
|
|
define Package/libpcre/install
|
2006-11-23 00:29:07 +00:00
|
|
|
$(INSTALL_DIR) $(1)/usr/lib
|
2006-10-28 22:43:08 +00:00
|
|
|
$(CP) $(PKG_BUILD_DIR)/.libs/libpcre{,posix}.so.* $(1)/usr/lib/
|
|
|
|
endef
|
|
|
|
|
2006-07-18 13:39:42 +00:00
|
|
|
$(eval $(call BuildPackage,libpcre))
|