10 lines
118 B
Plaintext
10 lines
118 B
Plaintext
|
#!/bin/sh -e
|
||
|
|
||
|
./configure \
|
||
|
--prefix=/usr \
|
||
|
--enable-gtk2 \
|
||
|
--disable-vte
|
||
|
|
||
|
make
|
||
|
make DESTDIR="$1" install
|