mirror of
https://github.com/dslm4515/BMLFS.git
synced 2025-08-10 02:45:15 +00:00
14 lines
343 B
Bash
14 lines
343 B
Bash
#! /bin/bash
|
|
|
|
# PyGTK 2.24.0
|
|
# source: http://ftp.gnome.org/pub/gnome/sources/pygtk/2.24/pygtk-2.24.0.tar.bz2
|
|
|
|
|
|
cp -v ../files/config.guess-musl config.guess &&
|
|
cp -v ../files/config.sub-musl config.sub &&
|
|
|
|
./configure --prefix=/usr $BUILDTRUPLE &&
|
|
|
|
read -p "Compile? " && make -j2 &&
|
|
read -p "Install? " && sudo -S porg -lD "make install"
|