python3-PyShellCode:first pisi release

This commit is contained in:
blue-devil
2020-01-18 18:47:58 +03:00
parent 318e907adc
commit 5fc0fb428a
3 changed files with 85 additions and 0 deletions
@@ -0,0 +1,21 @@
#!/usr/bin/python
# -*- coding: utf-8 -*-
#
# Licensed under the GNU General Public License, version 3.
# See the file http://www.gnu.org/licenses/gpl.txt
from pisi.actionsapi import cmaketools
from pisi.actionsapi import pisitools
from pisi.actionsapi import get
def setup():
pisitools.dosed("CMakeLists.txt","--prefix=\$\{CMAKE_INSTALL_PREFIX\}","--prefix=DESTDIR=%s" % get.installDIR())
cmaketools.configure()
def build():
cmaketools.make()
def install():
cmaketools.rawInstall("DESTDIR=%s" % get.installDIR())
pisitools.dodoc("README*", "LICENSE")