Files
main/programming/library/xxhash/actions.py
T
2023-11-17 10:59:27 +03:00

29 lines
745 B
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
from pisi.actionsapi import get
from pisi.actionsapi import autotools
from pisi.actionsapi import pisitools, shelltools, cmaketools
def setup():
shelltools.system("cmake -B build -S cmake_unofficial \
-DCMAKE_BUILD_TYPE=Release \
-DCMAKE_INSTALL_PREFIX=/usr \
-DCMAKE_INSTALL_LIBDIR=/usr/lib")
def build():
shelltools.cd("build")
cmaketools.make()
def install():
shelltools.cd("build")
cmaketools.rawInstall("DESTDIR=%s" % get.installDIR())
# pisitools.remove('/usr/lib/libxxhash.a')
shelltools.cd("..")
pisitools.dodoc("LICENSE", "doc/*")