[packages] tcp_wrappers: Refresh patches
[openwrt/svn-archive/archive.git] / libs / elfutils / Makefile
1 #
2 # Copyright (C) 2010 OpenWrt.org
3 #
4 # This is free software, licensed under the GNU General Public License v2.
5 # See /LICENSE for more information.
6 #
7 include $(TOPDIR)/rules.mk
8
9 PKG_NAME:=elfutils
10 PKG_VERSION:=0.150
11 PKG_RELEASE:=1
12
13 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2
14 PKG_SOURCE_URL:=http://fedorahosted.org/releases/e/l/$(PKG_NAME)/$(PKG_VERSION)
15 PKG_MD5SUM:=3dcfb28fa339090a1d29a9e148cce469
16
17 PKG_INSTALL:=1
18
19 include $(INCLUDE_DIR)/package.mk
20 include $(INCLUDE_DIR)/nls.mk
21
22 define Package/elfutils
23 SECTION:=libs
24 CATEGORY:=Libraries
25 DEPENDS:=$(INTL_DEPENDS)
26 TITLE:=ELF utilities
27 URL:=https://fedorahosted.org/elfutils/
28 endef
29
30 CONFIGURE_OPTS += \
31 --disable-generic \
32
33 MAKE_PATH:=./libelf
34
35 define Build/InstallDev
36 $(INSTALL_DIR) $(1)/usr/include
37 $(CP) $(PKG_BUILD_DIR)/libelf/libelf.h $(1)/usr/include/
38 $(INSTALL_DIR) $(1)/usr/lib
39 $(CP) $(PKG_BUILD_DIR)/libelf/libelf.{a,so*} $(1)/usr/lib/
40 endef
41
42 define Package/elfutils/install
43 $(INSTALL_DIR) $(1)/usr/lib
44 $(CP) $(PKG_BUILD_DIR)/libelf/libelf.so.* $(1)/usr/lib/
45 endef
46
47 $(eval $(call BuildPackage,elfutils))