blob: a34827450ccee800042abe7f4e9d1a79a760967c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
DESCRIPTION = "Allow safe temporary file creation from shell scripts."
HOMEPAGE = "http://www.mktemp.org/"
BUGTRACKER = "http://www.mktemp.org/bugs"
SECTION = "console/utils"
LICENSE = "ISC style"
LIC_FILES_CHKSUM = "file://LICENSE;md5=430680f6322a1eb87199b5e01a82c0d4"
PR = "r0"
SRC_URI = "ftp://ftp.mktemp.org/pub/mktemp/${P}.tar.gz \
file://disable-strip.patch \
"
inherit autotools update-alternatives
EXTRA_OECONF = "--with-libc"
do_install_append () {
mkdir ${D}${base_bindir}
mv ${D}${bindir}/mktemp ${D}${base_bindir}/mktemp.${PN}
}
ALTERNATIVE_NAME = "mktemp"
ALTERNATIVE_LINK = "${base_bindir}/mktemp"
ALTERNATIVE_PATH = "${base_bindir}/mktemp.${PN}"
ALTERNATIVE_PRIORITY = "100"
|