repo/extra/x264/build
2021-07-03 18:29:43 +00:00

16 lines
234 B
Bash
Executable File

#!/bin/sh -e
export CC=${CC:-cc} CXX=${CXX:-c++}
patch -p1 < x264-no-bash.patch
./configure \
--prefix=/usr \
--disable-swscale \
--enable-static \
--enable-pic \
--enable-shared
make
make DESTDIR="$1" install