mirror of
https://codeberg.org/kiss-community/repo
synced 2024-11-15 03:00:10 -07:00
77dc0590e3
Closes #259
16 lines
234 B
Bash
Executable File
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
|