jemalloc v5.3.1

This commit is contained in:
4fury-c3440d8
2026-04-14 15:05:54 +04:00
parent 2296652768
commit ec8eb88ed9
3 changed files with 24 additions and 21 deletions
+5 -9
View File
@@ -1,25 +1,21 @@
#!/usr/bin/env python
#!/usr/bin/python
# -*- coding: utf-8 -*-
#
# Licensed under the GNU General Public License, version 3.
# See the file http://www.gnu.org/licenses/gpl.txt
# See the file https://www.gnu.org/licenses/gpl-3.0.txt
from pisi.actionsapi import autotools
from pisi.actionsapi import pisitools
from pisi.actionsapi import shelltools
from pisi.actionsapi import get
def setup():
#shelltools.export("CC", "clang")
#shelltools.export("CXX", "clang++")
shelltools.system("./autogen.sh")
autotools.configure()
autotools.configure("--prefix=/usr")
def build():
autotools.make()
def install():
autotools.rawInstall("DESTDIR=%s" % get.installDIR())
a = 'install_{bin,include,lib,doc_man}'
autotools.rawInstall("DESTDIR=%s" % get.installDIR(), argument = '%s' % a)
pisitools.dodoc("ChangeLog", "COPYING")