mirror of
https://git.code.sf.net/p/linux-ima/ima-evm-utils
synced 2025-04-28 06:33:36 +02:00

Build on Sisyphus branch which is bleeding edge repository. Package manager is apt-rpm (not APT as it may look from the scripts). Signed-off-by: Vitaly Chikunov <vt@altlinux.org> Signed-off-by: Mimi Zohar <zohar@linux.ibm.com>
25 lines
437 B
Bash
Executable File
25 lines
437 B
Bash
Executable File
#!/bin/sh -ex
|
|
# SPDX-License-Identifier: GPL-2.0-only
|
|
#
|
|
# Install build env for ALT Linux
|
|
|
|
apt-get update -y
|
|
|
|
# rpm-build brings basic build environment with gcc, make, autotools, etc.
|
|
apt-get install -y \
|
|
$CC \
|
|
$TSS \
|
|
asciidoc \
|
|
attr \
|
|
docbook-style-xsl \
|
|
libattr-devel \
|
|
libkeyutils-devel \
|
|
libssl-devel \
|
|
openssl \
|
|
openssl-gost-engine \
|
|
rpm-build \
|
|
wget \
|
|
xsltproc \
|
|
xxd \
|
|
&& control openssl-gost enabled
|