diff --git a/multimedia/sound/libreplaygain/actions.py b/multimedia/sound/libreplaygain/actions.py
index d3b573cdd4..eb896813e1 100644
--- a/multimedia/sound/libreplaygain/actions.py
+++ b/multimedia/sound/libreplaygain/actions.py
@@ -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()
\ No newline at end of file
+# cmaketools.rawInstall("DESTDIR=%s" % get.installDIR())
+# cmaketools.install()
+
+# shelltools.cd("include")
+# pisitools.insinto("/usr/include", "replaygain")
+ autotools.rawInstall("DESTDIR=%s" % get.installDIR())
+
diff --git a/multimedia/sound/libreplaygain/pspec.xml b/multimedia/sound/libreplaygain/pspec.xml
index fc03569be3..bd5c6a91bb 100644
--- a/multimedia/sound/libreplaygain/pspec.xml
+++ b/multimedia/sound/libreplaygain/pspec.xml
@@ -15,9 +15,9 @@
https://files.musepack.net/source/libreplaygain_r475.tar.gz
-
- cmake
-
+
+
+
@@ -27,7 +27,7 @@
-
+
diff --git a/multimedia/sound/musepack/actions.py b/multimedia/sound/musepack/actions.py
index ecad681a4e..7b3386b6b6 100644
--- a/multimedia/sound/musepack/actions.py
+++ b/multimedia/sound/musepack/actions.py
@@ -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():