Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 1 | SUMMARY = "Tool to edit rpath in ELF binaries" |
| 2 | DESCRIPTION = "chrpath allows you to change the rpath (where the \ |
| 3 | application looks for libraries) in an application. It does not \ |
| 4 | (yet) allow you to add an rpath if there isn't one already." |
Andrew Geissler | 6ce62a2 | 2020-11-30 19:58:47 -0600 | [diff] [blame] | 5 | HOMEPAGE = "https://tracker.debian.org/pkg/chrpath" |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 6 | LICENSE = "GPLv2" |
| 7 | LIC_FILES_CHKSUM = "file://COPYING;md5=59530bdf33659b29e73d4adb9f9f6552" |
| 8 | |
Brad Bishop | d5ae7d9 | 2018-06-14 09:52:03 -0700 | [diff] [blame] | 9 | SRC_URI = "${DEBIAN_MIRROR}/main/c/${BPN}/${BPN}_${PV}.orig.tar.gz \ |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 10 | file://standarddoc.patch" |
| 11 | |
| 12 | SRC_URI[md5sum] = "2bf8d1d1ee345fc8a7915576f5649982" |
| 13 | SRC_URI[sha256sum] = "bb0d4c54bac2990e1bdf8132f2c9477ae752859d523e141e72b3b11a12c26e7b" |
| 14 | |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 15 | inherit 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 |
| 19 | CHRPATH_BIN_class-native = "${B}/chrpath" |
| 20 | |
| 21 | PROVIDES_append_class-native = " chrpath-replacement-native" |
| 22 | NATIVE_PACKAGE_PATH_SUFFIX = "/${PN}" |
| 23 | |
| 24 | BBCLASSEXTEND = "native nativesdk" |