9 lines
142 B
Bash
Executable File
9 lines
142 B
Bash
Executable File
#!/bin/sh -e
|
|
|
|
./configure \
|
|
--prefix=/usr \
|
|
man # mtpaint uses weird configure syntax...
|
|
|
|
make
|
|
make DESTDIR="$1" install
|