15 lines
321 B
Python
15 lines
321 B
Python
#!/usr/bin/python
|
|
# -*- coding: utf-8 -*-
|
|
|
|
from pisi.actionsapi import get, pisitools, shelltools
|
|
|
|
NoStrip = ["/usr"]
|
|
IgnoreAutodep = True
|
|
|
|
def setup():
|
|
shelltools.system("pwd")
|
|
shelltools.system("ar xf atom-amd64.deb")
|
|
shelltools.system("tar xf data.tar.xz")
|
|
|
|
def install():
|
|
pisitools.insinto("/", "usr") |