blob: d4001d3c6c436bf59fdc73a69948affd0117b742 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
DESCRIPTION = "Return the canonicalized absolute pathname"
SECTION = "utility"
PRIORITY = "optional"
LICENSE = "GPLv2"
PR = "r1"
SRC_URI = "${DEBIAN_MIRROR}/main/r/realpath/realpath_${PV}.tar.gz;name=realpath \
file://fix-common-mk.patch \
file://no-po4a.patch \
file://remove-nls.patch \
"
CFLAGS += "-DVERSION=${PV}"
TARGET_CC_ARCH += "${LDFLAGS}"
do_install () {
install -d ${D}${bindir}
install -p -m 0755 ${S}/src/_build/realpath ${D}${bindir}
}
SRC_URI[realpath.md5sum] = "3351ce6e3d0ce255641c8ca9216a8638"
SRC_URI[realpath.sha256sum] = "b3d11cec375145ea60663e6fe54727c70a0e86c18f40bddac2a89b635cc1531f"
|