mirror of
https://github.com/dslm4515/BMLFS.git
synced 2026-01-14 00:33:30 +00:00
15 lines
433 B
Bash
15 lines
433 B
Bash
#! /bin/bash
|
|
|
|
# libblockdev-2.22
|
|
# source: https://github.com/storaged-project/libblockdev/releases/download/2.22-1/libblockdev-2.22.tar.gz
|
|
|
|
./configure --prefix=/usr \
|
|
--sysconfdir=/etc \
|
|
--with-python3 \
|
|
--without-gtk-doc \
|
|
--without-nvdimm \
|
|
--without-dm $BUILDTRUPLE &&
|
|
|
|
read -p "Compile? " && make -j2 &&
|
|
read -p "Install? " && sudo -S porg -lD "make install"
|