forked from coolsnowwolf/lede
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
d118a76
commit a52f85c
Showing
17 changed files
with
416 additions
and
493 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,12 +8,12 @@ | |
include $(TOPDIR)/rules.mk | ||
|
||
PKG_NAME:=elfutils | ||
PKG_VERSION:=0.174 | ||
PKG_RELEASE:=2 | ||
PKG_VERSION:=0.175 | ||
PKG_RELEASE:=4 | ||
|
||
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2 | ||
PKG_SOURCE_URL:=https://sourceware.org/$(PKG_NAME)/ftp/$(PKG_VERSION) | ||
PKG_HASH:=cdf27e70076e10a29539d89e367101d516bc4aa11b0d7777fe52139e3fcad08a | ||
PKG_HASH:=f7ef925541ee32c6d15ae5cb27da5f119e01a5ccdbe9fe57bf836730d7b7a65b | ||
PKG_MAINTAINER:=Luiz Angelo Daros de Luca <[email protected]> | ||
PKG_LICENSE:=GPL-3.0+ | ||
PKG_LICENSE_FILES:=COPYING COPYING-GPLV2 COPYING-LGPLV3 | ||
|
@@ -33,24 +33,26 @@ define Package/elfutils/Default | |
CATEGORY:=Libraries | ||
TITLE:=ELF manipulation libraries | ||
URL:=https://fedorahosted.org/elfutils/ | ||
ABI_VERSION:=1 | ||
endef | ||
|
||
define Package/libasm | ||
$(call Package/elfutils/Default) | ||
TITLE+= (libasm) | ||
DEPENDS:=libelf1 +libdw | ||
DEPENDS:=+libelf +libdw | ||
endef | ||
|
||
define Package/libdw | ||
$(call Package/elfutils/Default) | ||
DEPENDS:=libelf1 +libbz2 | ||
DEPENDS:=+libelf +libbz2 | ||
TITLE+= (libdw) | ||
endef | ||
|
||
define Package/libelf1 | ||
define Package/libelf | ||
$(call Package/elfutils/Default) | ||
DEPENDS:=$(INTL_DEPENDS) +zlib | ||
TITLE+= (libelf) | ||
PROVIDES:=libelf1 | ||
endef | ||
|
||
ifeq ($(CONFIG_BUILD_NLS),y) | ||
|
@@ -79,19 +81,19 @@ endef | |
|
||
define Package/libasm/install | ||
$(INSTALL_DIR) $(1)/usr/lib | ||
$(CP) $(PKG_INSTALL_DIR)/usr/lib/libasm*.so* $(1)/usr/lib/ | ||
$(CP) $(PKG_INSTALL_DIR)/usr/lib/libasm{-*.so,*.so.*} $(1)/usr/lib/ | ||
endef | ||
|
||
define Package/libdw/install | ||
$(INSTALL_DIR) $(1)/usr/lib | ||
$(CP) $(PKG_INSTALL_DIR)/usr/lib/libdw*.so* $(1)/usr/lib/ | ||
$(CP) $(PKG_INSTALL_DIR)/usr/lib/libdw{-*.so,*.so.*} $(1)/usr/lib/ | ||
endef | ||
|
||
define Package/libelf1/install | ||
define Package/libelf/install | ||
$(INSTALL_DIR) $(1)/usr/lib | ||
$(CP) $(PKG_INSTALL_DIR)/usr/lib/libelf*.so* $(1)/usr/lib/ | ||
$(CP) $(PKG_INSTALL_DIR)/usr/lib/libelf{-*.so,*.so.*} $(1)/usr/lib/ | ||
endef | ||
|
||
$(eval $(call BuildPackage,libasm)) | ||
$(eval $(call BuildPackage,libdw)) | ||
$(eval $(call BuildPackage,libelf1)) | ||
$(eval $(call BuildPackage,libelf)) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.