|
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
|
|
export PATH="$(dirname $0):${PATH}"
|
|
|
|
|
|
|
|
|
|
tdp='cd ~/tde/tde-packaging/redhat'
|
|
|
|
|
grp='./genrpm.sh -v 3.5.13.2 -a'
|
|
|
|
|
|
|
|
|
|
BUILDDIR="/dev/shm/BUILD${DIST}.$(uname -i)"
|
|
|
|
|
BUILDROOTDIR="/dev/shm/BUILDROOT${DIST}.$(uname -i)"
|
|
|
|
|
DIST="$(rpm -E %{dist})"
|
|
|
|
|
LIB="$(rpm -E %_lib)"
|
|
|
|
|
|
|
|
|
|
if [ -x /usr/sbin/urpmi ]; then
|
|
|
|
|
PKGMGR="urpmi"
|
|
|
|
|
PKGINST='sudo urpmi --auto --no-verify-rpm'
|
|
|
|
|
PKGDEL='sudo urpme --auto'
|
|
|
|
|
REPOUPDATE='(cd $(rpm -E %{_rpmdir}); genhdlist2 --clean --allow-empty noarch; genhdlist2 --clean --allow-empty $(uname -i); sudo urpmi.update rpmbuild.$(uname -i) rpmbuild.noarch)'
|
|
|
|
|
elif [ -x /usr/bin/zypper ]; then
|
|
|
|
|
PKGMGR="zypper"
|
|
|
|
|
PKGINST="sudo zypper install -y"
|
|
|
|
|
PKGDEL="sudo zypper remove -y"
|
|
|
|
|
REPOUPDATE='(cd $(rpm -E %{_rpmdir}); createrepo $(uname -i); createrepo noarch; sudo zypper refresh)'
|
|
|
|
|
elif [ -x /usr/bin/yum ]; then
|
|
|
|
|
PKGMGR="yum"
|
|
|
|
|
PKGINST='sudo yum install -y'
|
|
|
|
|
PKGDEL='sudo yum remove -y'
|
|
|
|
|
REPOUPDATE='(cd $(rpm -E %{_rpmdir}); createrepo $(uname -i); createrepo noarch; sudo yum clean all --disablerepo="*" --enablerepo="rpmbuild*")'
|
|
|
|
|
elif [ -x /usr/bin/apt-get ]; then
|
|
|
|
|
PKGMGR="apt-get"
|
|
|
|
|
PKGINST='sudo apt-get install -y'
|
|
|
|
|
PKGDEL='sudo apt-get remove -y'
|
|
|
|
|
REPOUPDATE='(cd $(rpm -E %{_rpmdir}); genpkglist $PWD noarch; genpkglist $PWD i586; genpkglist $PWD x86_64; genbasedir $PWD i586 x86_64 noarch; sudo apt-get update)'
|
|
|
|
|
fi
|
|
|
|
|
|
|
|
|
|
BUILDDIR=$(rpm -E "%{_builddir}")
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if [ "${DIST:0:4}" = ".oss" ]; then
|
|
|
|
|
if [ ! -r /etc/rpm/macros.cmake ]; then
|
|
|
|
|
sudo cp macros.cmake /etc/rpm/macros.cmake
|
|
|
|
|
fi
|
|
|
|
|
fi
|
|
|
|
|
|
|
|
|
|
if [ ! -r /usr/include/jpegint.h ]; then
|
|
|
|
|
sudo cp extras/jpegint.h.el6 /usr/include/jpegint.h
|
|
|
|
|
fi
|
|
|
|
|
|
|
|
|
|
echo "Package Manager is '${PKGMGR}'"
|
|
|
|
|
|
|
|
|
|
pkg_listlocal() {
|
|
|
|
|
rpm -qa --qf "%{name} %{buildhost}\n" | while read a b; do case "$b" in *.vtf) echo $a;; esac;done
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
pkg_delall() {
|
|
|
|
|
PKGDEL $(pkg_listlocal)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
is_installed() {
|
|
|
|
|
rpm -q "$1" &>/dev/null
|
|
|
|
|
return $?
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
# Build package if not already installed
|
|
|
|
|
grpi() {
|
|
|
|
|
if ! is_installed trinity-"${1##*/}"; then
|
|
|
|
|
eval ${grp} ${1}
|
|
|
|
|
RET=$?
|
|
|
|
|
if [ $RET -gt 0 ]; then
|
|
|
|
|
echo "ERROR $RET !!!"
|
|
|
|
|
exit $RET
|
|
|
|
|
fi
|
|
|
|
|
fi
|
|
|
|
|
}
|
|
|
|
|
# Build package if not already installed, then update repo
|
|
|
|
|
grpiu() {
|
|
|
|
|
if ! is_installed trinity-"${1##*/}"; then
|
|
|
|
|
grpi "$1"
|
|
|
|
|
eval ${REPOUPDATE} || exit 1
|
|
|
|
|
fi
|
|
|
|
|
}
|
|
|
|
|
# Build package if not already installed, then update repo, then install package
|
|
|
|
|
grpiui() {
|
|
|
|
|
if ! is_installed trinity-"${1##*/}"; then
|
|
|
|
|
grpiu "$1"
|
|
|
|
|
eval ${PKGINST} "trinity-${1##*/}" || exit 1
|
|
|
|
|
fi
|
|
|
|
|
}
|
|
|
|
|
# Build package if not already installed, then update repo, then install -devel package
|
|
|
|
|
grpiud() {
|
|
|
|
|
if ! is_installed trinity-"${1##*/}"; then
|
|
|
|
|
grpiu "$1"
|
|
|
|
|
eval ${PKGINST} "trinity-${1##*/}" || exit 1
|
|
|
|
|
eval ${PKGINST} "trinity-${1##*/}-devel" || exit 1
|
|
|
|
|
fi
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
# QT3
|
|
|
|
|
if ! rpm -q libqt3-devel &>/dev/null && ! rpm -q lib64qt3-devel &>/dev/null && ! rpm -q qt3-devel &>/dev/null; then
|
|
|
|
|
if [ -r /etc/SuSE-release ]; then
|
|
|
|
|
pushd ../opensuse/core
|
|
|
|
|
elif [ -r /etc/mandriva-release ]; then
|
|
|
|
|
pushd ../mageia
|
|
|
|
|
else
|
|
|
|
|
pushd .
|
|
|
|
|
fi
|
|
|
|
|
grpiu dependencies/qt3
|
|
|
|
|
eval ${PKGINST} qt3-devel || exit 1
|
|
|
|
|
popd
|
|
|
|
|
fi
|
|
|
|
|
|
|
|
|
|
# Extra dependencies
|
|
|
|
|
grpiud extras/akode
|
|
|
|
|
|
|
|
|
|
# HAL already exists in:
|
|
|
|
|
# Mageia <= 2
|
|
|
|
|
# RHEL <= 6
|
|
|
|
|
# openSUSE <= 11.4
|
|
|
|
|
# Fedora <= 15
|
|
|
|
|
if [ "${DIST:0:6}" = ".oss12" ] || [ "${DIST}" = ".mga3" ] \
|
|
|
|
|
|| [ "${DIST}" = ".fc16" ]|| [ "${DIST}" = ".fc17" ] || [ "${DIST}" = ".fc18" ] || [ "${DIST}" = ".fc19" ]; then
|
|
|
|
|
if ! is_installed trinity-hal-devel; then
|
|
|
|
|
grpiu 3rdparty/hal
|
|
|
|
|
grpiu 3rdparty/hal-info
|
|
|
|
|
eval ${PKGINST} trinity-hal-devel || exit 1
|
|
|
|
|
fi
|
|
|
|
|
fi
|
|
|
|
|
if [ "${DIST:0:4}" = ".mga" ]; then
|
|
|
|
|
if ! is_installed ${LIB}esound-devel; then
|
|
|
|
|
grpiu 3rdparty/esound
|
|
|
|
|
eval ${PKGINST} esound-devel || exit 1
|
|
|
|
|
fi
|
|
|
|
|
if ! is_installed htdig; then
|
|
|
|
|
grpiu 3rdparty/htdig
|
|
|
|
|
eval ${PKGINST} htdig || exit 1
|
|
|
|
|
fi
|
|
|
|
|
fi
|
|
|
|
|
if [ "${DIST}" = ".el4" ] || [ "${DIST}" = ".el5" ]; then
|
|
|
|
|
grpiud 3rdparty/poppler
|
|
|
|
|
fi
|
|
|
|
|
if [ "${DIST}" = ".el4" ] || [ "${DIST}" = ".el5" ]; then
|
|
|
|
|
grpiud 3rdparty/sip
|
|
|
|
|
fi
|
|
|
|
|
|
|
|
|
|
# TDE dependencies
|
|
|
|
|
grpiud dependencies/tqtinterface
|
|
|
|
|
grpiud dependencies/arts
|
|
|
|
|
grpiud dependencies/libcaldav
|
|
|
|
|
grpiud dependencies/libcarddav
|
|
|
|
|
grpiud dependencies/tqca
|
|
|
|
|
if [ "${DIST}" != ".el4" ]; then
|
|
|
|
|
grpiud dependencies/avahi-tqt
|
|
|
|
|
grpiud dependencies/dbus-1-tqt
|
|
|
|
|
grpiud dependencies/dbus-tqt
|
|
|
|
|
grpiui dependencies/tqca-tls
|
|
|
|
|
fi
|
|
|
|
|
|
|
|
|
|
# Extra dependencies
|
|
|
|
|
grpiud extras/akode
|
|
|
|
|
|
|
|
|
|
# TDE main
|
|
|
|
|
# basic packages
|
|
|
|
|
grpiud tdelibs
|
|
|
|
|
grpiud tdebase
|
|
|
|
|
|
|
|
|
|
# Main packages which are required by later main packages
|
|
|
|
|
grpiud tdepim
|
|
|
|
|
grpiud tdemultimedia
|
|
|
|
|
grpiud tdegames
|
|
|
|
|
grpiud tdebindings
|
|
|
|
|
grpiud tdegraphics
|
|
|
|
|
grpiud tdenetwork
|
|
|
|
|
|
|
|
|
|
# other main packages
|
|
|
|
|
grpiui tdeaccessibility
|
|
|
|
|
grpiui tdeaddons
|
|
|
|
|
grpiui tdeadmin
|
|
|
|
|
grpiui tdeartwork
|
|
|
|
|
grpiui tdeedu
|
|
|
|
|
grpiui tdetoys
|
|
|
|
|
grpiui tdeutils
|
|
|
|
|
|
|
|
|
|
if ! is_installed trinity-desktop; then
|
|
|
|
|
grpiu extras/trinity-desktop
|
|
|
|
|
eval ${PKGINST} trinity-desktop || exit 1
|
|
|
|
|
fi
|
|
|
|
|
# Disable trinity repository from here !!!
|
|
|
|
|
if [ -r "/etc/yum.repos.d/trinity-3.5.13.repo" ]; then
|
|
|
|
|
sudo sed -i "/etc/yum.repos.d/trinity-3.5.13.repo" -e "s|enabled=.*|enabled=0|g"
|
|
|
|
|
fi
|
|
|
|
|
|
|
|
|
|
# devel packages
|
|
|
|
|
grpiud tdesdk
|
|
|
|
|
grpiui tdevelop
|
|
|
|
|
grpiui tdewebdev
|
|
|
|
|
if ! is_installed trinity-desktop-devel; then
|
|
|
|
|
eval ${PKGINST} trinity-desktop-devel || exit 1
|
|
|
|
|
fi
|
|
|
|
|
|
|
|
|
|
# 3rd party libraries
|
|
|
|
|
|
|
|
|
|
## IMLIB1: required for kuickshow
|
|
|
|
|
if ! is_installed imlib1-devel && ! is_installed imlib-devel; then
|
|
|
|
|
grpiu 3rdparty/imlib1
|
|
|
|
|
eval ${PKGINST} imlib1-devel || exit 1
|
|
|
|
|
fi
|
|
|
|
|
|
|
|
|
|
## WV2: for Koffice, not needed on Mageia (already provided)
|
|
|
|
|
if [ "${DIST:0:4}" != ".mga" ]; then
|
|
|
|
|
if ! is_installed wv2; then
|
|
|
|
|
grpiu 3rdparty/wv2
|
|
|
|
|
eval ${PKGINST} wv2 || exit 1
|
|
|
|
|
eval ${PKGINST} wv2-devel || exit 1
|
|
|
|
|
fi
|
|
|
|
|
fi
|
|
|
|
|
|
|
|
|
|
## LIBOTR3: required for kopete-otr
|
|
|
|
|
if [ "${DIST:0:5}" = ".mga3" ]; then
|
|
|
|
|
if ! is_installed libotr3; then
|
|
|
|
|
grpiu 3rdparty/libotr3
|
|
|
|
|
eval ${PKGINST} libotr3 || exit 1
|
|
|
|
|
eval ${PKGINST} libotr3-devel || exit 1
|
|
|
|
|
fi
|
|
|
|
|
fi
|
|
|
|
|
|
|
|
|
|
## PYTHON-QT3: for Python-stuff
|
|
|
|
|
if ! is_installed python-qt3; then
|
|
|
|
|
if [ "${DIST:0:3}" = ".el" ] || [ "${DIST:0:3}" = ".fc" ]; then
|
|
|
|
|
eval ${PKGINST} qt3-MySQL qt3-ODBC qt3-PostgreSQL
|
|
|
|
|
fi
|
|
|
|
|
grpiu 3rdparty/python-qt3
|
|
|
|
|
eval ${PKGINST} python-qt3-devel || exit 1
|
|
|
|
|
fi
|
|
|
|
|
|
|
|
|
|
## PCSC-PERL: for smartcardauth
|
|
|
|
|
if [ "${DIST:0:4}" = ".oss" ] || [ "${DIST:0:3}" = ".el" ]; then
|
|
|
|
|
if ! is_installed pcsc-perl; then
|
|
|
|
|
grpiu 3rdparty/pcsc-perl
|
|
|
|
|
eval ${PKGINST} pcsc-perl || exit 1
|
|
|
|
|
fi
|
|
|
|
|
fi
|
|
|
|
|
|
|
|
|
|
## Lilypond: needed for rosegarden
|
|
|
|
|
if [ "${DIST}" = ".el6" ]; then
|
|
|
|
|
if ! is_installed mftrace; then
|
|
|
|
|
grpiu 3rdparty/mftrace
|
|
|
|
|
eval ${PKGINST} mftrace || exit 1
|
|
|
|
|
fi
|
|
|
|
|
if ! is_installed lilypond; then
|
|
|
|
|
grpiu 3rdparty/lilypond
|
|
|
|
|
eval ${PKGINST} lilypond || exit 1
|
|
|
|
|
fi
|
|
|
|
|
fi
|
|
|
|
|
|
|
|
|
|
# TDE libraries
|
|
|
|
|
grpiud libraries/libkdcraw
|
|
|
|
|
grpiud libraries/libkexiv2
|
|
|
|
|
grpiud libraries/libkipi
|
|
|
|
|
grpiud libraries/libksquirrel
|
|
|
|
|
grpiud libraries/python-trinity
|
|
|
|
|
grpiud libraries/pytdeextensions
|
|
|
|
|
|
|
|
|
|
# Build applications
|
|
|
|
|
# K3B is required later for k9copy
|
|
|
|
|
grpiud applications/k3b
|
|
|
|
|
# other applications, any order ...
|
|
|
|
|
grpiui applications/abakus
|
|
|
|
|
#grpiui applications/adept
|
|
|
|
|
grpiui applications/amarok
|
|
|
|
|
grpiui applications/basket
|
|
|
|
|
grpiui applications/bibletime
|
|
|
|
|
#grpiui applications/compizconfig-backend-kconfig
|
|
|
|
|
grpiui applications/digikam
|
|
|
|
|
grpiui applications/dolphin
|
|
|
|
|
grpiui applications/filelight
|
|
|
|
|
#grpiui applications/filelight-l10n
|
|
|
|
|
#grpiui applications/fusion-icon
|
|
|
|
|
grpiui applications/gwenview
|
|
|
|
|
grpiui applications/k9copy
|
|
|
|
|
grpiui applications/kaffeine
|
|
|
|
|
grpiui applications/kaffeine-mozilla
|
|
|
|
|
grpiui applications/katapult
|
|
|
|
|
grpiui applications/kbarcode
|
|
|
|
|
grpiui applications/kbfx
|
|
|
|
|
grpiui applications/kbookreader
|
|
|
|
|
grpiui applications/kchmviewer
|
|
|
|
|
grpiui applications/kcmautostart
|
|
|
|
|
grpiui applications/kcpuload
|
|
|
|
|
if [ "${DIST}" != ".el4" ]; then
|
|
|
|
|
grpiui applications/kdbusnotification
|
|
|
|
|
fi
|
|
|
|
|
grpiui applications/kdiff3
|
|
|
|
|
grpiui applications/kdirstat
|
|
|
|
|
grpiui applications/keep
|
|
|
|
|
#grpiui applications/kerry
|
|
|
|
|
grpiui applications/kile
|
|
|
|
|
if [ "${DIST}" != ".el4" ]; then
|
|
|
|
|
grpiui applications/kima
|
|
|
|
|
fi
|
|
|
|
|
grpiui applications/kiosktool
|
|
|
|
|
if [ "${DIST}" != ".el4" ]; then
|
|
|
|
|
grpiui applications/kmplayer
|
|
|
|
|
fi
|
|
|
|
|
grpiui applications/kmyfirewall
|
|
|
|
|
grpiui applications/kmymoney
|
|
|
|
|
grpiui applications/knemo
|
|
|
|
|
grpiui applications/knetload
|
|
|
|
|
grpiui applications/knetstats
|
|
|
|
|
if [ "${DIST}" = ".el6" ] || [ "${DIST:0:6}" = ".oss11" ]; then
|
|
|
|
|
grpiui applications/knetworkmanager8
|
|
|
|
|
fi
|
|
|
|
|
grpiui applications/knights
|
|
|
|
|
grpiui applications/knowit
|
|
|
|
|
grpiui applications/knutclient
|
|
|
|
|
if ! is_installed trinity-koffice-suite; then
|
|
|
|
|
grpiu applications/koffice
|
|
|
|
|
eval ${PKGINST} trinity-koffice-suite
|
|
|
|
|
fi
|
|
|
|
|
grpiui applications/konversation
|
|
|
|
|
grpiui applications/kopete-otr
|
|
|
|
|
grpiui applications/kpicosim
|
|
|
|
|
if [ "${DIST}" != ".el4" ]; then
|
|
|
|
|
grpiui applications/kpilot
|
|
|
|
|
fi
|
|
|
|
|
if [ "${DIST}" != ".el4" ] && [ "${DIST}" != ".el5" ]; then
|
|
|
|
|
grpiui applications/kpowersave
|
|
|
|
|
fi
|
|
|
|
|
grpiui applications/krename
|
|
|
|
|
grpiui applications/krusader
|
|
|
|
|
grpiui applications/ksplash-engine-moodin
|
|
|
|
|
grpiui applications/ksquirrel
|
|
|
|
|
grpiui applications/kstreamripper
|
|
|
|
|
grpiui applications/ksystemlog
|
|
|
|
|
grpiui applications/ktechlab
|
|
|
|
|
grpiui applications/ktorrent
|
|
|
|
|
grpiui applications/kuickshow
|
|
|
|
|
grpiui applications/kvirc
|
|
|
|
|
grpiui applications/kvkbd
|
|
|
|
|
grpiui applications/piklab
|
|
|
|
|
grpiui applications/potracegui
|
|
|
|
|
if [ "${DIST}" != ".el4" ] && [ "${DIST}" != ".el5" ]; then
|
|
|
|
|
grpiui applications/rosegarden
|
|
|
|
|
fi
|
|
|
|
|
grpiui applications/smartcardauth
|
|
|
|
|
grpiui applications/smb4k
|
|
|
|
|
grpiui applications/soundkonverter
|
|
|
|
|
grpiui applications/tde-guidance
|
|
|
|
|
grpiui applications/tdeio-apt
|
|
|
|
|
grpiui applications/tdeio-locate
|
|
|
|
|
grpiui applications/tdeio-umountwrapper
|
|
|
|
|
grpiui applications/tderadio
|
|
|
|
|
grpiui applications/tde-style-lipstik
|
|
|
|
|
grpiui applications/tde-style-qtcurve
|
|
|
|
|
grpiui applications/tdesudo
|
|
|
|
|
if [ "${DIST}" != ".el4" ]; then
|
|
|
|
|
grpiui applications/tdesvn
|
|
|
|
|
fi
|
|
|
|
|
grpiui applications/tde-systemsettings
|
|
|
|
|
grpiui applications/tdmtheme
|
|
|
|
|
grpiui applications/tellico
|
|
|
|
|
grpiui applications/twin-style-crystal
|
|
|
|
|
grpiui applications/wlassistant
|
|
|
|
|
grpiui applications/yakuake
|
|
|
|
|
|
|
|
|
|
# Decoration-related stuff are distribution-dependant.
|
|
|
|
|
if [ "${DIST}" != ".el4" ] && [ "${DIST}" != ".el5" ]; then
|
|
|
|
|
grpiui applications/gtk-qt-engine
|
|
|
|
|
#grpiui applications/kgtk-qt3
|
|
|
|
|
fi
|
|
|
|
|
|
|
|
|
|
if ! is_installed trinity-desktop-applications; then
|
|
|
|
|
eval ${PKGINST} trinity-desktop-applications || exit 1
|
|
|
|
|
fi
|
|
|
|
|
|
|
|
|
|
if ! is_installed trinity-desktop-all; then
|
|
|
|
|
eval ${PKGINST} trinity-desktop-all || exit 1
|
|
|
|
|
fi
|
|
|
|
|
|
|
|
|
|
# Locales packages
|
|
|
|
|
grpiui applications/gwenview-i18n
|
|
|
|
|
if ! is_installed trinity-k3b-i18n-French; then
|
|
|
|
|
grpiu applications/k3b-i18n
|
|
|
|
|
eval ${PKGINST} trinity-k3b-i18n-French || exit 1
|
|
|
|
|
fi
|
|
|
|
|
if ! is_installed trinity-koffice-i18n-French; then
|
|
|
|
|
grpiu applications/koffice-i18n
|
|
|
|
|
eval ${PKGINST} trinity-koffice-i18n-French
|
|
|
|
|
fi
|
|
|
|
|
if ! is_installed trinity-tde-i18n-French; then
|
|
|
|
|
grpiu tde-i18n
|
|
|
|
|
eval ${PKGINST} trinity-tde-i18n-French || exit 1
|
|
|
|
|
fi
|
|
|
|
|
|
|
|
|
|
exit 0
|
|
|
|
|
|
|
|
|
|
# Build extra packages
|
|
|
|
|
grpiui extras/icons-crystalsvg-updated
|
|
|
|
|
grpiui extras/icons-kfaenza
|
|
|
|
|
grpiui extras/icons-oxygen
|
|
|
|
|
#grpiui extras/kasablanca
|
|
|
|
|
#grpiui applications/kbibtex
|
|
|
|
|
#grpiui applications/kbiff
|
|
|
|
|
#grpiui extras/kcheckgmail
|
|
|
|
|
#grpiui extras/kdebluetooth
|
|
|
|
|
#grpiui extras/kftpgrabber
|
|
|
|
|
grpiui extras/kickoff-i18n
|
|
|
|
|
#grpiui extras/knmap
|
|
|
|
|
#grpiui extras/knoda
|
|
|
|
|
#grpiui extras/ksensors
|
|
|
|
|
#grpiui extras/kshowmail
|
|
|
|
|
#grpiui extras/mplayerthumbs
|
|
|
|
|
eval ${PKGINST} trinity-desktop-applications || exit 1
|
|
|
|
|
|
|
|
|
|
grpiui extras/style-ia-ora
|
|
|
|
|
#if ! is_installed trinity-tdeio-ftps-plugin; then
|
|
|
|
|
# grpiu extras/tdeio-ftps
|
|
|
|
|
# eval ${PKGINST} trinity-tdeio-ftps-plugin
|
|
|
|
|
#fi
|
|
|
|
|
#grpiui extras/tdeio-sysinfo
|
|
|
|
|
#grpiui extras/theme-baghira
|
|
|
|
|
#grpiu 3rdparty/torsocks
|
|
|
|
|
#eval ${PKGINST} torsocks
|
|
|
|
|
#grpiui extras/tork
|
|
|
|
|
#grpiui extras/trinity-desktop
|
|
|
|
|
#grpiui extras/trinity-live
|
|
|
|
|
#grpiui extras/twinkle
|
|
|
|
|
#eval ${PKGINST} trinity-desktop-extras
|
|
|
|
|
|