12 lines
146 B
Plaintext
12 lines
146 B
Plaintext
|
#!/bin/sh -e
|
||
|
|
||
|
./configure \
|
||
|
--prefix=/usr \
|
||
|
--enable-single-host
|
||
|
|
||
|
make
|
||
|
#make modules
|
||
|
#make check
|
||
|
make doc
|
||
|
make DESTDIR="$1" install
|