Path: blob/main/Mk/Scripts/desktop-categories.sh
16462 views
#!/bin/sh1#2# MAINTAINER: [email protected]34set -e5set -o pipefail67. "${dp_SCRIPTSDIR}/functions.sh"89validate_env dp_CATEGORIES dp_SORT dp_TR dp_ECHO_CMD1011[ -n "${DEBUG_MK_SCRIPTS}" ] || [ -n "${DEBUG_MK_SCRIPTS_DESKTOP_CATEGORIES}" ] && set -x1213set -u1415categories=""16for native_category in ${dp_CATEGORIES}; do17c=""18case ${native_category} in19accessibility) c="Utility Accessibility" ;;20archivers) c="Utility Archiving" ;;21astro) c="Education Science Astronomy" ;;22audio) c="AudioVideo Audio" ;;23benchmarks) c="System" ;;24biology) c="Education Science Biology" ;;25budgie) c="Budgie GTK" ;;26cad) c="Graphics Engineering" ;;27comms) c="Utility" ;;28converters) c="Utility" ;;29databases) c="Office Database" ;;30deskutils) c="Utility" ;;31devel) c="Development" ;;32dns) c="Network" ;;33editors) c="Utility" ;;34education) c="Education" ;;35elisp) c="Development" ;;36emulators) c="System Emulator" ;;37filesystems) c="System Filesystem" ;;38finance) c="Office Finance" ;;39ftp) c="Network FileTransfer" ;;40games) c="Game" ;;41geography) c="Education Science Geography" ;;42gnome) c="GNOME GTK" ;;43graphics) c="Graphics" ;;44hamradio) c="HamRadio" ;;45haskell) c="Development" ;;46irc) c="Network IRCClient" ;;47java) c="Development Java" ;;48kde) c="KDE Qt" ;;49lang) c="Development" ;;50lisp) c="Development" ;;51mail) c="Office Email" ;;52mate) c="MATE GTK" ;;53math) c="Education Science Math" ;;54mbone) c="Network AudioVideo" ;;55multimedia) c="AudioVideo" ;;56net) c="Network" ;;57net-im) c="Network InstantMessaging" ;;58net-mgmt) c="Network" ;;59net-p2p) c="Network P2P" ;;60net-vpn) c="Network VPN" ;;61news) c="Network News" ;;62parallel) c="ParallelComputing" ;;63pear) c="Development WebDevelopment" ;;64perl5) c="Development" ;;65python) c="Development" ;;66ruby) c="Development" ;;67rubygems) c="Development" ;;68scheme) c="Development" ;;69science) c="Science Education" ;;70security) c="System Security" ;;71shells) c="System Shell" ;;72sysutils) c="System" ;;73tcl*|tk*) c="Development" ;;74textproc) c="Utility TextTools" ;;75www) c="Network" ;;76x11-clocks) c="Utility Clock" ;;77x11-fm) c="System FileManager" ;;78xfce) c="GTK XFCE" ;;79zope) c="Development WebDevelopment" ;;80esac81if [ -n "${c}" ]; then82categories="${categories} ${c}"83fi84done8586if [ -n "${categories}" ]; then87for c in ${categories}; do88${dp_ECHO_CMD} "${c}"89done | ${dp_SORT} -u | ${dp_TR} '\n' ';'90${dp_ECHO_CMD}91fi929394