forked from pmem/libpmemobj-cpp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinstall-libndctl.sh
executable file
·74 lines (55 loc) · 1.36 KB
/
install-libndctl.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
#!/usr/bin/env bash
# SPDX-License-Identifier: BSD-3-Clause
# Copyright 2018-2021, Intel Corporation
#
# install-libndctl.sh - installs libndctl
#
set -e
if [[ -z "${OS}" ]]; then
echo "ERROR: The variable OS has to be set (e.g. OS=fedora)."
exit 1
fi
echo "==== clone ndctl repo ===="
git clone https://github.com/pmem/ndctl.git
cd ndctl
git checkout v69
if [ "${OS}" = "fedora" ]; then
echo "==== setup rpmbuild tree ===="
rpmdev-setuptree
RPMDIR=${HOME}/rpmbuild/
VERSION=$(./git-version)
SPEC=./rhel/ndctl.spec
echo "==== create source tarball ====="
git archive --format=tar --prefix="ndctl-${VERSION}/" HEAD | gzip > "${RPMDIR}/SOURCES/ndctl-${VERSION}.tar.gz"
echo "==== build ndctl ===="
./autogen.sh
./configure --disable-docs
make -j$(nproc)
echo "==== build ndctl packages ===="
rpmbuild -ba ${SPEC}
echo "==== install ndctl packages ===="
rpm -i ${RPMDIR}/RPMS/x86_64/*.rpm
echo "==== cleanup ===="
rm -rf ${RPMDIR}
else
echo "==== set OS-specific options ===="
OS_SPECIFIC=""
LIBDIR=/usr/lib
case $(echo ${OS} | cut -d'-' -f1) in
centos|opensuse)
LIBDIR=/usr/lib64
;;
archlinux)
OS_SPECIFIC="--disable-dependency-tracking"
;;
esac
echo "==== build ndctl ===="
./autogen.sh
./configure --libdir=${LIBDIR} --disable-docs ${OS_SPECIFIC}
make -j$(nproc)
echo "==== install ndctl ===="
make -j$(nproc) install
echo "==== cleanup ===="
fi
cd ..
rm -rf ndctl