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:
Ross Burton
2007-06-29 10:23:37 +00:00
parent dedb4d34e2
commit 13e87f0a96
2 changed files with 4 additions and 8 deletions

View File

@@ -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]

View File

@@ -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]