forked from Pisilinux/contrib
25 lines
922 B
Python
25 lines
922 B
Python
#!/usr/bin/env python
|
|
# -*- coding: utf-8 -*-
|
|
#
|
|
# Licensed under the GNU General Public License, version 3.
|
|
# See the file http://www.gnu.org/copyleft/gpl.txt
|
|
|
|
from pisi.actionsapi import pisitools, shelltools, get
|
|
|
|
NoStrip = ["/opt", "/usr"]
|
|
IgnoreAutodep = True
|
|
|
|
def setup():
|
|
shelltools.system("ar xf google-earth-pro-stable_current_amd64.deb")
|
|
shelltools.system("tar xvf data.tar.xz")
|
|
shelltools.system("mv opt/google/earth/pro/google-earth-pro.desktop .")
|
|
|
|
def install():
|
|
pisitools.insinto("/", "opt")
|
|
pisitools.insinto("/usr", "usr/bin")
|
|
pisitools.insinto("/usr/share/applications", "google-earth-pro.desktop")
|
|
pisitools.dosym("ld-linux-x86-64.so.2", "/lib/ld-lsb-x86-64.so.3")
|
|
|
|
for i in ["16", "22", "24", "32", "48", "64", "128", "256"]:
|
|
pisitools.insinto("/usr/share/icons/hicolor/%sx%s/apps" % (i,i), "opt/google/earth/pro/product_logo_%s.png" % i, "google-earth-pro.png")
|