From 37ec5e4485e0a330ccc2cabeff2d18230cf8465f Mon Sep 17 00:00:00 2001 From: alihanozturk Date: Sat, 18 Feb 2017 19:47:03 +0300 Subject: [PATCH] libcue:fix actions --- multimedia/sound/libcue/actions.py | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/multimedia/sound/libcue/actions.py b/multimedia/sound/libcue/actions.py index c26d37aa00..bf5c20b971 100644 --- a/multimedia/sound/libcue/actions.py +++ b/multimedia/sound/libcue/actions.py @@ -4,16 +4,17 @@ # Licensed under the GNU General Public License, version 3. # See the file http://www.gnu.org/licenses/gpl.txt -from pisi.actionsapi import autotools +from pisi.actionsapi import cmaketools from pisi.actionsapi import pisitools +from pisi.actionsapi import get def setup(): - autotools.configure("--disable-static") + cmaketools.configure("-DCMAKE_INSTALL_PREFIX=/usr") def build(): - autotools.make() + cmaketools.make() def install(): - autotools.install() + cmaketools.rawInstall("DESTDIR=%s" % get.installDIR()) - pisitools.dodoc("AUTHORS", "ChangeLog", "COPYING", "NEWS") + pisitools.dodoc("LICENSE", "ChangeLog", "README*")