mirror of
https://git.yoctoproject.org/poky
synced 2026-04-17 09:32:12 +02:00
Capitalise titles without using bash syntax
git-svn-id: https://svn.o-hand.com/repos/poky/trunk@2059 311d38ba-8fff-0310-9ca6-ca027cbcb966
This commit is contained in:
@@ -3,7 +3,7 @@ LICENSE = "MIT"
|
||||
SECTION = "x11"
|
||||
DEPENDS = "gtk+ gconf intltool-native librsvg"
|
||||
PV = "0.1+svn${SRCDATE}"
|
||||
PR = "r3"
|
||||
PR = "r4"
|
||||
|
||||
inherit autotools pkgconfig
|
||||
|
||||
@@ -19,9 +19,7 @@ do_install_append () {
|
||||
for prog in *; do
|
||||
if [ -x $prog ]; then
|
||||
# Convert prog to Title Case
|
||||
firstchar=${prog:0:1}
|
||||
title=`echo "$firstchar" | tr a-z A-Z`
|
||||
title="$title${prog:1}"
|
||||
title=$(echo $prog | sed 's/\(^\| \)./\U&/g')
|
||||
echo "making ${D}/${datadir}/applications/$prog.desktop"
|
||||
cat <<STOP > ${D}/${datadir}/applications/$prog.desktop
|
||||
[Desktop Entry]
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
|
||||
DEPENDS = "gtk+"
|
||||
PR = "r4"
|
||||
PR = "r5"
|
||||
MOD_PV = "${@bb.data.getVar('PV',d,1)[1:]}"
|
||||
|
||||
#SRC_URI = "http://www.chiark.greenend.org.uk/~sgtatham/puzzles/puzzles-${PV}.tar.gz"
|
||||
@@ -35,9 +35,7 @@ do_install () {
|
||||
for prog in *; do
|
||||
if [ -x $prog ]; then
|
||||
# Convert prog to Title Case
|
||||
firstchar=${prog:0:1}
|
||||
title=`echo "$firstchar" | tr a-z A-Z`
|
||||
title="$title${prog:1}"
|
||||
title=$(echo $prog | sed 's/\(^\| \)./\U&/g')
|
||||
echo "making ${D}/${datadir}/applications/$prog.desktop"
|
||||
cat <<STOP > ${D}/${datadir}/applications/$prog.desktop
|
||||
[Desktop Entry]
|
||||
|
||||
Reference in New Issue
Block a user