blob: de734e841a2da944e227948033db632bdc3edd45 [file] [log] [blame]
Patrick Williamsc124f4f2015-09-15 14:41:29 -05001SUMMARY = "Tool to edit rpath in ELF binaries"
2DESCRIPTION = "chrpath allows you to change the rpath (where the \
3application looks for libraries) in an application. It does not \
4(yet) allow you to add an rpath if there isn't one already."
Andrew Geissler6ce62a22020-11-30 19:58:47 -06005HOMEPAGE = "https://tracker.debian.org/pkg/chrpath"
Patrick Williamsc124f4f2015-09-15 14:41:29 -05006LICENSE = "GPLv2"
7LIC_FILES_CHKSUM = "file://COPYING;md5=59530bdf33659b29e73d4adb9f9f6552"
8
Brad Bishopd5ae7d92018-06-14 09:52:03 -07009SRC_URI = "${DEBIAN_MIRROR}/main/c/${BPN}/${BPN}_${PV}.orig.tar.gz \
Patrick Williamsc124f4f2015-09-15 14:41:29 -050010 file://standarddoc.patch"
11
12SRC_URI[md5sum] = "2bf8d1d1ee345fc8a7915576f5649982"
13SRC_URI[sha256sum] = "bb0d4c54bac2990e1bdf8132f2c9477ae752859d523e141e72b3b11a12c26e7b"
14
Patrick Williamsc124f4f2015-09-15 14:41:29 -050015inherit autotools
16
17# We don't have a staged chrpath-native for ensuring our binary is
18# relocatable, so use the one we've just built
Patrick Williams213cb262021-08-07 19:21:33 -050019CHRPATH_BIN:class-native = "${B}/chrpath"
Patrick Williamsc124f4f2015-09-15 14:41:29 -050020
Patrick Williams213cb262021-08-07 19:21:33 -050021PROVIDES:append:class-native = " chrpath-replacement-native"
Patrick Williamsc124f4f2015-09-15 14:41:29 -050022NATIVE_PACKAGE_PATH_SUFFIX = "/${PN}"
23
24BBCLASSEXTEND = "native nativesdk"