30 lines
557 B
Bash
30 lines
557 B
Bash
# Copyright 2018 Martin Sekera <sekerama@gmail.com>
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
require github [ user=elementary ]
|
|
|
|
SUMMARY="Pantheon X session files."
|
|
SLOT="0"
|
|
LICENCES="GPL-3"
|
|
|
|
DEPENDENCIES=""
|
|
|
|
MYOPTIONS="
|
|
platform:
|
|
amd64
|
|
"
|
|
|
|
src_install() {
|
|
insinto /usr/share/xsessions
|
|
doins xsessions/pantheon.desktop
|
|
|
|
insinto /usr/share/gnome-session/sessions
|
|
doins gnome-session/pantheon.session
|
|
|
|
insinto /usr/share/gnome/autostart
|
|
pushd autostart > /dev/null
|
|
for f in *; do
|
|
doins "${f}"
|
|
done
|
|
popd > /dev/null
|
|
}
|