Merge pull request #2881 from alihanozturk/master

libcue:fix actions portaudio:fix actions
This commit is contained in:
Alihan Öztürk
2017-02-18 19:21:54 +02:00
committed by GitHub
2 changed files with 6 additions and 6 deletions
+6 -5
View File
@@ -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*")
-1
View File
@@ -21,5 +21,4 @@ def build():
def install():
autotools.rawInstall('DESTDIR="%s" libdir=/usr/lib' % get.installDIR())
pisitools.insinto("/%s/%s" % (get.docDIR(), get.srcNAME()), "doc/html")
pisitools.dodoc("LICENSE.txt", "README.txt")