plasma-workspace: rebuild for libqalculate, new packages: libcpuid and cpu-x

This commit is contained in:
suvari
2022-10-22 14:27:54 +03:00
parent fa83e4fd40
commit ac66950f33
12 changed files with 354247 additions and 353859 deletions
+26
View File
@@ -0,0 +1,26 @@
#!/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 pisitools, shelltools, cmaketools
from pisi.actionsapi import get
def setup():
cmaketools.configure("-DCMAKE_INSTALL_PREFIX='/usr' \
-DCMAKE_BUILD_TYPE='Release' \
-DGSETTINGS_COMPILE=OFF \
-DWITH_GTK=3 \
-DCMAKE_INSTALL_LIBEXECDIR=lib/cpu-x")
def build():
cmaketools.make()
#def check():
#cmaketools.make("test")
def install():
cmaketools.install()
pisitools.dodoc("README*", "COPYING")