build (266B)
1 #!/bin/sh -e 2 3 for file in patches/* ; do 4 patch -p1 < "$file" 5 done 6 7 ./configure \ 8 --prefix=/usr \ 9 --disable-gtk-doc \ 10 --disable-http2 \ 11 --disable-man \ 12 --disable-rofiles-fuse \ 13 --without-soup \ 14 --with-curl 15 16 make 17 make DESTDIR="$1" install