10 lines
105 B
Bash
Executable File
10 lines
105 B
Bash
Executable File
#!/bin/sh -e
|
|
|
|
./configure \
|
|
--prefix=/usr \
|
|
|
|
make
|
|
make DESTDIR="$1" install
|
|
|
|
rm -rf "$1/usr/LessTif"
|