alsa-lib ver. bump

This commit is contained in:
Rmys
2022-06-03 15:14:09 +03:00
parent 2c39ce87b0
commit dbc18ec1c0
6 changed files with 59 additions and 9 deletions
@@ -5,11 +5,24 @@
# See the file http://www.gnu.org/licenses/gpl.txt
from pisi.actionsapi import pythonmodules
from pisi.actionsapi import shelltools
from pisi.actionsapi import get
#WorkDir="pyalsaaudio-%s" % get.srcVERSION()
def build():
shelltools.copytree("../pyalsaaudio-%s" % (get.srcVERSION().replace("_", "~")), "../pyalsaaudio-%s-py2" % get.srcVERSION())
shelltools.cd("../pyalsaaudio-%s-py2" % get.srcVERSION())
pythonmodules.compile()
shelltools.cd("../pyalsaaudio-%s" % get.srcVERSION())
pythonmodules.compile(pyVer="3")
def install():
shelltools.cd("../pyalsaaudio-%s-py2" % get.srcVERSION())
pythonmodules.install()
shelltools.cd("../pyalsaaudio-%s" % get.srcVERSION())
pythonmodules.install(pyVer="3")