diff options
author | Khem Raj <raj.khem@gmail.com> | 2023-05-10 07:59:48 -0700 |
---|---|---|
committer | Khem Raj <raj.khem@gmail.com> | 2023-05-10 08:01:07 -0700 |
commit | f0ac2514331be188fc36aaa179771d649e274f85 (patch) | |
tree | d655d8379df7e9c55214e66e50efe28f231f48dd | |
parent | 60c7509ee5910c7cd27eb495c3c08f29364d1acc (diff) | |
download | meta-openembedded-f0ac2514331be188fc36aaa179771d649e274f85.tar.gz |
psutils: Add recipe
Signed-off-by: Khem Raj <raj.khem@gmail.com>
-rw-r--r-- | meta-oe/recipes-support/psutils/psutils_2.10.bb | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/meta-oe/recipes-support/psutils/psutils_2.10.bb b/meta-oe/recipes-support/psutils/psutils_2.10.bb new file mode 100644 index 0000000000..1f1894a5f2 --- /dev/null +++ b/meta-oe/recipes-support/psutils/psutils_2.10.bb | |||
@@ -0,0 +1,24 @@ | |||
1 | LICENSE = "GPL-3.0-or-later" | ||
2 | LIC_FILES_CHKSUM = "file://COPYING;md5=87212b5f1ae096371049a12f80034f32" | ||
3 | |||
4 | SRC_URI = "https://github.com/rrthomas/psutils/releases/download/v${PV}/psutils-${PV}.tar.gz" | ||
5 | SRC_URI[sha256sum] = "6f8339fd5322df5c782bfb355d9f89e513353220fca0700a5a28775404d7e98b" | ||
6 | |||
7 | inherit perlnative autotools | ||
8 | |||
9 | export PERL="/usr/bin/env perl" | ||
10 | |||
11 | DEPENDS += "libpaper-native" | ||
12 | |||
13 | do_install:append() { | ||
14 | sed -i -e 's|${STAGING_BINDIR_NATIVE}/perl-native/|/usr/bin/env |g' ${D}${bindir}/pstops | ||
15 | for f in psbook psresize psnup psselect; do | ||
16 | grep -v '${B}' ${D}${bindir}/$f > ${D}${bindir}/$f.temp | ||
17 | install -m 0755 ${D}${bindir}/$f.temp ${D}${bindir}/$f | ||
18 | rm -f ${D}${bindir}/$f.temp | ||
19 | done | ||
20 | } | ||
21 | |||
22 | BBCLASSEXTEND += "native" | ||
23 | # /usr/bin/pstops contained in package psutils requires perl | ||
24 | RDEPENDS:${PN} += "perl" | ||