mirror of
https://github.com/dslm4515/BMLFS.git
synced 2026-02-01 03:26:07 +00:00
16 lines
401 B
Bash
Executable File
16 lines
401 B
Bash
Executable File
#! /bin/bash
|
|
|
|
# source: http://ftp.gnome.org/pub/gnome/sources/vte/0.52/vte-0.52.2.tar.xz
|
|
|
|
#autoreconf -fvi &&
|
|
|
|
enable_glade_catalogue=yes \
|
|
./configure --prefix=/usr \
|
|
--sysconfdir=/etc \
|
|
--disable-static \
|
|
--enable-introspection --enable-vala &&
|
|
|
|
read -p "Compile? " && make -j4 &&
|
|
read -p "Install? " && sudo -S porg -lD "make -j1 install"
|
|
|