fix musepack build.

This commit is contained in:
4fury-c3440d8
2020-09-18 21:22:44 +03:00
parent 83ea34e083
commit 6259e8d32e
3 changed files with 28 additions and 13 deletions
+22 -8
View File
@@ -2,21 +2,35 @@
# -*- coding: utf-8 -*-
#
# Licensed under the GNU General Public License, version 3.
# See the file http://www.gnu.org/copyleft/gpl.txt.
# See the file https://www.gnu.org/licenses/gpl-3.0.txt
#from pisi.actionsapi import shelltools
#from pisi.actionsapi import cmaketools
from pisi.actionsapi import pisitools
from pisi.actionsapi import cmaketools
from pisi.actionsapi import autotools
from pisi.actionsapi import get
j = "-DCMAKE_INSTALL_PREFIX=/usr \
-DCMAKE_BUILD_TYPE=Release \
"
def setup():
cmaketools.configure("-DCMAKE_INSTALL_PREFIX=/usr \
-DCMAKE_BUILD_TYPE=Release")
# cmaketools.configure(j)
autotools.autoreconf("-fiv")
autotools.configure("--enable-mpcchap --disable-static")
def build():
cmaketools.make()
# cmaketools.make()
autotools.make()
def check():
pass
pass
def install():
#cmaketools.rawInstall("DESTDIR=%s" % get.installDIR())
cmaketools.install()
# cmaketools.rawInstall("DESTDIR=%s" % get.installDIR())
# cmaketools.install()
# shelltools.cd("include")
# pisitools.insinto("/usr/include", "replaygain")
autotools.rawInstall("DESTDIR=%s" % get.installDIR())
+5 -5
View File
@@ -15,9 +15,9 @@
<Archive sha1sum="7739b4b9cf46e0846663f707a9498a4db0345eaf" type="targz">
https://files.musepack.net/source/libreplaygain_r475.tar.gz
</Archive>
<BuildDependencies>
<Dependency>cmake</Dependency>
</BuildDependencies>
<BuildDependencies>
<!-- <Dependency>cmake</Dependency> -->
</BuildDependencies>
</Source>
<Package>
@@ -27,7 +27,7 @@
</Files>
</Package>
<!-- <Package>
<Package>
<Name>libreplaygain-devel</Name>
<Summary>Development files for libreplaygain</Summary>
<RuntimeDependencies>
@@ -36,7 +36,7 @@
<Files>
<Path fileType="header">/usr/include</Path>
</Files>
</Package> -->
</Package>
<History>
<Update release="6">
+1
View File
@@ -8,6 +8,7 @@ from pisi.actionsapi import autotools
from pisi.actionsapi import get
def setup():
autotools.autoreconf("-fiv")
autotools.configure("--enable-mpcchap --disable-static")
def build():