mirror of
https://github.com/dslm4515/BMLFS.git
synced 2025-08-15 22:40:32 +00:00
10 lines
289 B
Bash
10 lines
289 B
Bash
#! /bin/bash
|
|
|
|
# Librsvg 2.40.18
|
|
# Source: http://ftp.gnome.org/pub/gnome/sources/librsvg/2.40/librsvg-2.40.18.tar.xz
|
|
|
|
./configure --prefix=/usr --enable-vala \
|
|
--disable-static $BUILDTRUPLE &&
|
|
read -p "Compile? " && make -j2 &&
|
|
read -p "Install? " && sudo -S porg -lD "make install"
|