opusfile: ver bump.

This commit is contained in:
4fury
2020-06-28 21:32:23 +03:00
parent 5279f37ea1
commit c32074b763
8 changed files with 49 additions and 46 deletions
+8 -11
View File
@@ -1,24 +1,21 @@
#!/usr/bin/python
# -*- coding: utf-8 -*-
#
# Licensed under the GNU General Public License, version 2
# See the file http://www.gnu.org/copyleft/gpl.txt
# Licensed under the GNU General Public License, version 3.
# See the file https://www.gnu.org/licenses/gpl-3.0.txt
from pisi.actionsapi import get
from pisi.actionsapi import shelltools
from pisi.actionsapi import autotools
from pisi.actionsapi import pisitools
from pisi.actionsapi import shelltools
from pisi.actionsapi import get
def setup():
autotools.autoreconf("-fiv")
options = "\
--disable-static \
"
options = "--disable-static"
if get.buildTYPE() == "_emul32":
options += " --libdir=/usr/lib32 \
"
shelltools.export("PKG_CONFIG_PATH", "/usr/lib32/pkgconfig")
options += " --libdir=/usr/lib32 "
shelltools.export("PKG_CONFIG_PATH", "/usr/lib32/pkgconfig")
autotools.configure(options)
@@ -30,6 +27,6 @@ def build():
def install():
autotools.rawInstall("DESTDIR=%s" % get.installDIR())
if get.buildTYPE() != "_emul32":
pisitools.dodoc("AUTHORS", "COPYING", "INSTALL", "README")