Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #
- # Copyright (C) 2018 Entware
- #
- # This is free software, licensed under the GNU General Public License v2.
- # See /LICENSE for more information.
- #
- include $(TOPDIR)/rules.mk
- PKG_NAME:=patchelf
- PKG_VERSION:=0.9
- PKG_RELEASE:=1
- PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2
- PKG_SOURCE_URL:=http://nixos.org/releases/patchelf/patchelf-$(PKG_VERSION)
- PKG_HASH:=a0f65c1ba148890e9f2f7823f4bedf7ecad5417772f64f994004f59a39014f83
- PKG_FIXUP:=autoreconf
- PKG_INSTALL:=1
- include $(INCLUDE_DIR)/package.mk
- define Package/patchelf
- SECTION:=devel
- CATEGORY:=Development
- TITLE:=patchelf
- URL:=https://nixos.org/patchelf.html
- MAINTAINER:=Entware team, https://entware.net
- DEPENDS:=+libstdcpp
- endef
- define Package/patchelf/description
- A small utility to modify the dynamic linker and RPATH of ELF executables
- endef
- define Package/patchelf/install
- $(INSTALL_DIR) $(1)/opt/bin
- $(INSTALL_BIN) $(PKG_INSTALL_DIR)/opt/bin/patchelf $(1)/opt/bin
- endef
- $(eval $(call BuildPackage,patchelf))
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement