2
0
mirror of https://codeberg.org/kiss-community/repo synced 2024-07-07 16:32:28 +00:00
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