muparser: version bump to 2.3.4
This commit is contained in:
@@ -1,24 +1,24 @@
|
||||
#!/usr/bin/python
|
||||
#!/usr/bin/env python
|
||||
# -*- coding: utf-8 -*-
|
||||
#
|
||||
# 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("--enable-shared=yes \
|
||||
--enable-debug=no \
|
||||
--enable-samples=no")
|
||||
cmaketools.configure("-DCMAKE_INSTALL_PREFIX='/usr'")
|
||||
|
||||
def build():
|
||||
autotools.make()
|
||||
cmaketools.make()
|
||||
|
||||
def check():
|
||||
cmaketools.make("test")
|
||||
|
||||
|
||||
def install():
|
||||
autotools.install()
|
||||
cmaketools.rawInstall("DESTDIR=%s" % get.installDIR())
|
||||
|
||||
pisitools.dodoc("Changes.txt", "License.txt")
|
||||
pisitools.dodoc("README*", "LICENSE")
|
||||
|
||||
Reference in New Issue
Block a user