mirror of
https://github.com/dslm4515/BMLFS.git
synced 2026-01-14 00:33:30 +00:00
11 lines
328 B
Bash
Executable File
11 lines
328 B
Bash
Executable File
#! /bin/bash
|
|
|
|
# SOURCE: ftp://ftp.gnome.org/pub/gnome/sources/libsigc++/2.10/libsigc++-2.10.0.tar.xz
|
|
|
|
sed -e '/^libdocdir =/ s/$(book_name)/libsigc++-2.10.0/' -i docs/Makefile.in
|
|
|
|
./configure --prefix=/usr --build=x86_64-linux-musl &&
|
|
|
|
read -p "Compile?" && make -j4 &&
|
|
read -p "Install?" && sudo -S porg -lD "make -j1 install"
|