12 lines
171 B
Plaintext
12 lines
171 B
Plaintext
|
#!/bin/sh -e
|
||
|
|
||
|
git init
|
||
|
git submodule update --recursive
|
||
|
|
||
|
./configure --prefix=/usr \
|
||
|
--disable-libwebp \
|
||
|
--disable-translation
|
||
|
|
||
|
make
|
||
|
make DESTDIR="$1" install
|