# -*-makefile-*- # # Copyright (C) 2006 by Sascha Hauer # (C) 2010 by Michael Olbrich # # See CREDITS for details about who has contributed to this project. # # For further information about the PTXdist project and license conditions # see the README file. # # # We provide this package # PACKAGES-$(PTXCONF_LDD) += ldd # This is the version from the glibc we have stolen from LDD_VERSION := 2.7 # ---------------------------------------------------------------------------- # Target-Install # ---------------------------------------------------------------------------- $(STATEDIR)/ldd.targetinstall: @$(call targetinfo) @$(call install_init, ldd) @$(call install_fixup, ldd,PRIORITY,optional) @$(call install_fixup, ldd,SECTION,base) @$(call install_fixup, ldd,AUTHOR,"Robert Schwebel ") @$(call install_fixup, ldd,DESCRIPTION,missing) @$(call install_copy, ldd, 0, 0, 0755, $(PTXDIST_TOPDIR)/generic/usr/bin/ldd, /usr/bin/ldd, n) @$(call install_finish, ldd) @$(call touch) # vim: syntax=make