~ubuntu-branches/ubuntu/wily/playonlinux/wily

« back to all changes in this revision

Viewing changes to bash/options/panel

  • Committer: Bazaar Package Importer
  • Author(s): Bertrand Marc
  • Date: 2009-07-05 13:12:29 UTC
  • mfrom: (1.1.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20090705131229-502hj2z2yng39g1k
Tags: 3.6-1
* New upstream release :
  - Various bug fixed
  - Winetricks integration
* Bump Standards-Version to 3.8.2 (no changes needed).
* Match playonlinux.install with the new source tree.
* Add a dependency on gettext-base for translation support.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#!/bin/bash
2
 
 
3
 
# Copyright (C) 2007 Pâris Quentin
4
 
#                    Cassarin-Grand Arthur
5
 
 
6
 
# This program is free software; you can redistribute it and/or modify
7
 
# it under the terms of the GNU General Public License as published by
8
 
# the Free Software Foundation; either version 2 of the License, or
9
 
# (at your option) any later version.
10
 
 
11
 
# This program is distributed in the hope that it will be useful,
12
 
# but WITHOUT ANY WARRANTY; without even the implied warranty of
13
 
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14
 
# GNU General Public License for more details.
15
 
 
16
 
# You should have received a copy of the GNU General Public License along
17
 
# with this program; if not, write to the Free Software Foundation, Inc.,
18
 
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. 
19
 
 
20
 
if [ "$PLAYONLINUX" = "" ]
21
 
then
22
 
        exit 0
23
 
fi
24
 
 
25
 
source "$PLAYONLINUX/lib/sources" 
26
 
 
27
 
if [ "$1" == "--build" ]
28
 
then
29
 
                        mkdir -p $HOME/.config/menus/applications-merged/
30
 
                        mkdir -p $HOME/.config/menus/kde-applications-merged/
31
 
                        mkdir -p $HOME/.local/share/applications
32
 
                        mkdir -p $HOME/.local/share/desktop-directories
33
 
                        mkdir -p $HOME/.local/share/icons
34
 
                        generer_icone "playonlinux" "PlayOnLinux" "$HOME/.local/share/applications/" "$PLAYONLINUX/playonlinux" "PlayOnLinux"
35
 
                        cp $PLAYONLINUX/etc/playonlinux-Programmes.menu $HOME/.config/menus/applications-merged/
36
 
                        cp $PLAYONLINUX/etc/playonlinux-Programmes.menu $HOME/.config/menus/kde-applications-merged/
37
 
                        cp $PLAYONLINUX/etc/PlayOnLinux.directory $HOME/.local/share/desktop-directories
38
 
                        cp $PLAYONLINUX/etc/playonlinux.png $HOME/.local/share/icons
39
 
else
40
 
                        rm $HOME/.config/menus/applications-merged/playonlinux-Programmes.menu 2> /dev/null
41
 
                        rm $HOME/.config/menus/kde-applications-merged/playonlinux-Programmes.menu 2> /dev/null
42
 
fi
43
 
 
44