12 lines
112 B
Bash
Executable File
12 lines
112 B
Bash
Executable File
#!/bin/sh -e
|
|
|
|
cd Project/GNU/CLI
|
|
|
|
./autogen.sh
|
|
|
|
./configure \
|
|
--prefix=/usr
|
|
|
|
make
|
|
make DESTDIR="$1" install
|