98bcf46920
git-svn-id: svn://svn.openwrt.org/openwrt/packages@19600 3c298f89-4303-0410-b956-a3cf2f4a3e73
54 lines
1.2 KiB
Makefile
54 lines
1.2 KiB
Makefile
#
|
|
# Copyright (C) 2006-2010 OpenWrt.org
|
|
#
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
# See /LICENSE for more information.
|
|
#
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
PKG_NAME:=pcre
|
|
PKG_VERSION:=8.01
|
|
PKG_RELEASE:=1
|
|
|
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2
|
|
PKG_SOURCE_URL:=@SF/pcre
|
|
PKG_MD5SUM:=413be1c23dabe91f637fb3770f640006
|
|
|
|
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
|
|
|
|
TARGET_CFLAGS += $(FPIC)
|
|
|
|
CONFIGURE_ARGS += \
|
|
--enable-shared \
|
|
--enable-static \
|
|
--enable-utf8 \
|
|
--disable-cpp \
|
|
|
|
MAKE_FLAGS += \
|
|
$(TARGET_CONFIGURE_OPTS) \
|
|
CFLAGS="$(TARGET_CFLAGS)" \
|
|
all \
|
|
|
|
define Build/InstallDev
|
|
$(INSTALL_DIR) $(1)/usr/bin $(2)/bin $(1)/usr/include $(1)/usr/lib
|
|
$(CP) $(PKG_BUILD_DIR)/pcre-config $(1)/usr/bin/
|
|
ln -sf $(STAGING_DIR)/usr/bin/pcre-config $(2)/bin
|
|
$(CP) $(PKG_BUILD_DIR)/pcre{,posix}.h $(1)/usr/include/
|
|
$(CP) $(PKG_BUILD_DIR)/.libs/libpcre{,posix}.{a,so*} $(1)/usr/lib/
|
|
endef
|
|
|
|
define Package/libpcre/install
|
|
$(INSTALL_DIR) $(1)/usr/lib
|
|
$(CP) $(PKG_BUILD_DIR)/.libs/libpcre{,posix}.so.* $(1)/usr/lib/
|
|
endef
|
|
|
|
$(eval $(call BuildPackage,libpcre))
|