mirror of
https://github.com/dslm4515/BMLFS.git
synced 2026-01-14 00:33:30 +00:00
15 lines
307 B
Bash
Executable File
15 lines
307 B
Bash
Executable File
#! /bin/bash
|
|
|
|
# source: https://sourceforge.net/projects/libmtp/files/libmtp/1.1.16/libmtp-1.1.16.tar.gz
|
|
|
|
#autoreconf -fvi &&
|
|
|
|
./configure --prefix=/usr \
|
|
-disable-static \
|
|
--with-udev=/usr/lib/udev &&
|
|
|
|
read -p "Compile? " && make -j4 &&
|
|
read -p "Install? " && sudo -S porg -lD "make -j1 install"
|
|
|
|
|