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