71 lines
2.2 KiB
Bash
71 lines
2.2 KiB
Bash
#!/bin/sh
|
|
#
|
|
# Copyright (C) 2019 Mason Hock <ruben@trisquel.info>
|
|
#
|
|
# This program is free software; you can redistribute it and/or modify
|
|
# it under the terms of the GNU General Public License as published by
|
|
# the Free Software Foundation; either version 2 of the License, or
|
|
# (at your option) any later version.
|
|
#
|
|
# This program is distributed in the hope that it will be useful,
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
# GNU General Public License for more details.
|
|
#
|
|
# You should have received a copy of the GNU General Public License
|
|
# along with this program; if not, write to the Free Software
|
|
# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
|
#
|
|
|
|
VERSION=2
|
|
|
|
. ./config
|
|
|
|
cat << EOF > data/indicator-datetime.desktop.in
|
|
[Desktop Entry]
|
|
Type=Application
|
|
Name=Indicator Date & Time
|
|
Exec=@pkglibexecdir@/indicator-datetime-service
|
|
OnlyShowIn=MATE;
|
|
NoDisplay=true
|
|
StartupNotify=false
|
|
Terminal=false
|
|
Icon=@messaging_menu_icon@
|
|
EOF
|
|
|
|
cat << EOF >> data/CMakeLists.txt
|
|
|
|
##
|
|
## XDG Autostart File
|
|
##
|
|
|
|
# where to install
|
|
set (XDG_AUTOSTART_DIR "/etc/xdg/autostart")
|
|
message (STATUS "\${XDG_AUTOSTART_DIR} is the DBus Service File install dir")
|
|
|
|
set (XDG_AUTOSTART_NAME "\${CMAKE_PROJECT_NAME}.desktop")
|
|
set (XDG_AUTOSTART_FILE "\${CMAKE_CURRENT_BINARY_DIR}/\${XDG_AUTOSTART_NAME}")
|
|
set (XDG_AUTOSTART_FILE_IN "\${CMAKE_CURRENT_SOURCE_DIR}/\${XDG_AUTOSTART_NAME}.in")
|
|
|
|
# build it
|
|
set (pkglibexecdir "\${CMAKE_INSTALL_FULL_PKGLIBEXECDIR}")
|
|
configure_file ("\${XDG_AUTOSTART_FILE_IN}" "\${XDG_AUTOSTART_FILE}")
|
|
|
|
# install XDG autostart
|
|
install (FILES "\${XDG_AUTOSTART_FILE}"
|
|
DESTINATION "\${XDG_AUTOSTART_DIR}")
|
|
EOF
|
|
|
|
failed_tests="test-eds-ics-repeating-events-with-individual-change test-eds-ics-all-day-events test-eds-ics-repeating-events test-eds-ics-nonrepeating-events test-eds-ics-repeating-valarms test-eds-ics-missing-trigger test-eds-ics-tzids-2 test-eds-ics-tzids-utc test-eds-ics-tzids test-eds-ics-non-attending-alarms"
|
|
|
|
for t in $failed_tests; do
|
|
sed -i "/$t/d" tests/CMakeLists.txt
|
|
rm tests/$t.*
|
|
done
|
|
|
|
# This messes things up
|
|
rm debian/indicator-datetime.maintscript
|
|
|
|
changelog "Add MATE compatibility"
|
|
|
|
compile
|