muparser: version bump to 2.3.4

This commit is contained in:
suvari
2023-10-14 14:29:11 +03:00
parent 5e02028122
commit 22bca4e49f
2 changed files with 25 additions and 13 deletions
+9 -9
View File
@@ -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")