33 lines
1.1 KiB
Python
33 lines
1.1 KiB
Python
#!/usr/bin/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 get
|
|
from pisi.actionsapi import pisitools
|
|
from pisi.actionsapi import shelltools
|
|
|
|
#NoStrip = ["/usr/lib/x86_64-linux-gnu/opera"]
|
|
#IgnoreAutodep = True
|
|
|
|
def setup():
|
|
shelltools.system("pwd")
|
|
shelltools.system("ar xf opera-stable_%s_amd64.deb" % get.srcVERSION())
|
|
shelltools.system("tar xvf data.tar.xz")
|
|
|
|
def install():
|
|
pisitools.insinto("/opt", "usr/lib/x86_64-linux-gnu/*")
|
|
pisitools.insinto("/usr/share", "usr/share/*")
|
|
pisitools.dosym("/opt/opera/opera", "/usr/bin/opera")
|
|
# root owns sandbox as it is setuid
|
|
#shelltools.system("chown root:root usr/lib/x86_64-linux-gnu/opera/opera_sandbox")
|
|
# ensure setuid
|
|
#shelltools.system("chmod 4755 usr/lib/x86_64-linux-gnu/opera/opera_sandbox")
|
|
|
|
# Because ew.
|
|
#pisitools.move("%s/usr/lib/x86_64-linux-gnu/*" % get.installDIR(), "%s/usr/lib" % get.installDIR())
|
|
#pisitools.removeDir("/usr/lib/x86_64-linux-gnu")
|
|
#pisitools.removeDir("/usr/share/lintian")
|
|
|
|
#pisitools.remove("/usr/bin/opera")
|