Files
core/system/base/plyvel/actions.py
T
2026-02-13 17:33:38 +03:00

21 lines
733 B
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 autotools
from pisi.actionsapi import pisitools
from pisi.actionsapi import shelltools
from pisi.actionsapi import pythonmodules
from pisi.actionsapi import get
def build():
autotools.make()
def install():
pythonmodules.install()
shelltools.chmod("%s/usr/lib/python2.7/site-packages/plyvel-%s-py2.7.egg-info/top_level.txt" % (get.installDIR(), get.srcVERSION()), 0644)
shelltools.chmod("%s/usr/lib/python2.7/site-packages/plyvel-%s-py2.7.egg-info/PKG-INFO" % (get.installDIR(), get.srcVERSION()), 0644)
pisitools.dodoc("*.rst")