From 3a042273b58ac0a08ae4aa7f2c588c84cc468b61 Mon Sep 17 00:00:00 2001 From: Rmys Date: Wed, 28 Oct 2020 23:35:59 +0200 Subject: [PATCH] zstd main'den silinmesi gerekli --- system/base/zstd/actions.py | 28 +++++++++++++--------------- system/base/zstd/pspec.xml | 9 ++++++++- 2 files changed, 21 insertions(+), 16 deletions(-) diff --git a/system/base/zstd/actions.py b/system/base/zstd/actions.py index 32b1b372..c7ebfa49 100644 --- a/system/base/zstd/actions.py +++ b/system/base/zstd/actions.py @@ -6,24 +6,22 @@ import os from pisi.actionsapi import autotools from pisi.actionsapi import shelltools +from pisi.actionsapi import mesontools from pisi.actionsapi import get def setup(): - shelltools.makedirs("bld") - shelltools.cd("bld") - shelltools.system("meson setup \ - ../build/meson \ - --prefix=/usr \ - -Dlegacy-level=7 \ - -Dzlib=enabled \ - -Dlzma=enabled \ - -Dlz4=enabled \ - ") + shelltools.cd("build/meson") + mesontools.configure("-Dlegacy-level=7 \ + -Dzlib=enabled \ + -Dlzma=enabled \ + -Dbin_contrib=true \ + -Dlz4=enabled") + def build(): - shelltools.cd("bld") - shelltools.system("ninja") - + shelltools.cd("build/meson") + mesontools.build() + def install(): - shelltools.cd("bld") - shelltools.system("DESTDIR=%s ninja install" % get.installDIR()) + shelltools.cd("build/meson") + mesontools.install() diff --git a/system/base/zstd/pspec.xml b/system/base/zstd/pspec.xml index e95d45b8..f39ecaed 100644 --- a/system/base/zstd/pspec.xml +++ b/system/base/zstd/pspec.xml @@ -49,12 +49,19 @@ - + 2020-10-22 1.4.5 First release İdris Kalp idriskalp@gmail.com + + 2020-02-14 + 1.4.4 + First release + PisiLinux Community + admins@pisilinux.org +