-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpicasa.sh
executable file
·30 lines (28 loc) · 939 Bytes
/
picasa.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
#!/bin/bash
# -*- coding: utf-8 -*-
# Copyright (C) 2009 林哲瑋 Zhe-Wei Lin (billy3321,雨蒼) <billy3321 -AT- gmail.com>
# Last Modified: 24 Aug 2009
# Released under GNU General Public License
# Please run as root.
#
# @name_zhTW '安裝 Picasa 3 (Beta)'
# @desc_zhTW '將Picasa 3 安裝在Linux上面'
# @category 'Graphic'
# @maintaner '林哲瑋 Zhe-Wei Lin (billy3321,雨蒼) <billy3321 -AT- gmail.com>'
# @author '林哲瑋 Zhe-Wei Lin (billy3321,雨蒼) <billy3321 -AT- gmail.com>'
# @license 'GPL'
# @ubuntu
# @debian
# @platform 'i386 amd64'
echo "正在下載並安裝Picasa..."
case $PLAT_NAME in
"i386")
./download-install Picasa "http://dl.google.com/linux/deb/pool/non-free/p/picasa/picasa_3.0-current_i386.deb"
;;
"x86_64")
./download-install Picasa "http://dl.google.com/linux/deb/pool/non-free/p/picasa/picasa_3.0-current_amd64.deb"
;;
*)
echo "Sorry, Lazyscripts not support $PLAT_NAME"
;;
esac