-
Notifications
You must be signed in to change notification settings - Fork 3
/
install_pacup.sh
executable file
·50 lines (41 loc) · 1.24 KB
/
install_pacup.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
#!/bin/bash
if [ ! -f /etc/debian_version ];then
echo -e "このディストリビューションには、 \"pacup\" をインストール出来ません。\n\nDebian系 もしくは Debian派生系のみ対応しています。"
exit 1
fi
if [ `whoami` != 'root' ]; then
sudo $BASH_SOURCE
if [ $? != 0 ]; then
echo "Root(管理者)権限で実行してください"
exit 1
fi
exit 0
fi
if [ ! -f ./pacup ]; then
echo -e "\"pacup\" ファイルが見つかりませんでした\n"
exit 1
fi
command -v snap >/dev/null 2>&1
if [ $? == 0 ] && [ ! -f /usr/bin/wslfetch ]; then
sed -i -e "/^ : #SYS$/a \ \ sudo snap refresh" ./pacup
fi
command -v flatpak >/dev/null 2>&1
if [ $? == 0 ]; then
sed -i -e "/^ : #FPK$/a \ \ flatpak update" ./pacup
fi
cp -f ./pacup /usr/local/bin/pacup
chmod +rx /usr/local/bin/pacup
if [ ! -d /usr/local/share/applications ]; then
mkdir -p /usr/local/share/applications
fi
cp -f ./pacup.desktop /usr/local/share/applications
if [ -d ../デスクトップ ]; then
cp -f ./pacup_Manual.txt ../デスクトップ
elif [ -d ../Desktop ]; then
cp -f ./pacup_Manual.txt ../Desktop
else
echo "マニュアルファイルのコピーをスキップしました"
exit 1
fi
echo "Success!"
exit 0