fix compiling on avr32
[openwrt/svn-archive/archive.git] / libs / pcre / Makefile
1 #
2 # Copyright (C) 2006-2008 OpenWrt.org
3 #
4 # This is free software, licensed under the GNU General Public License v2.
5 # See /LICENSE for more information.
6 #
7 # $Id$
8
9 include $(TOPDIR)/rules.mk
10
11 PKG_NAME:=pcre
12 PKG_VERSION:=7.6
13 PKG_RELEASE:=2
14
15 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2
16 PKG_SOURCE_URL:=@SF/pcre
17 PKG_MD5SUM:=2af38e083fb90ef60fa9eda7cc290e86
18
19 PKG_FIXUP = libtool
20
21 include $(INCLUDE_DIR)/package.mk
22
23 define Package/libpcre
24 SECTION:=libs
25 CATEGORY:=Libraries
26 TITLE:=A Perl Compatible Regular Expression library
27 URL:=http://www.pcre.org/
28 endef
29
30 CONFIGURE_ARGS += \
31 --enable-shared \
32 --enable-static \
33 --enable-utf8 \
34 --disable-cpp \
35
36 MAKE_FLAGS += \
37 $(TARGET_CONFIGURE_OPTS) \
38 CFLAGS="$(TARGET_CFLAGS)" \
39 all \
40
41 define Build/InstallDev
42 $(INSTALL_DIR) $(1)/usr/bin $(2)/bin $(1)/usr/include $(1)/usr/lib
43 $(CP) $(PKG_BUILD_DIR)/pcre-config $(1)/usr/bin/
44 ln -sf $(STAGING_DIR)/usr/bin/pcre-config $(2)/bin
45 $(CP) $(PKG_BUILD_DIR)/pcre{,posix}.h $(1)/usr/include/
46 $(CP) $(PKG_BUILD_DIR)/.libs/libpcre{,posix}.{a,so*} $(1)/usr/lib/
47 endef
48
49 define Package/libpcre/install
50 $(INSTALL_DIR) $(1)/usr/lib
51 $(CP) $(PKG_BUILD_DIR)/.libs/libpcre{,posix}.so.* $(1)/usr/lib/
52 endef
53
54 $(eval $(call BuildPackage,libpcre))