blob: 73cc54a0ad042d6f7612c629e012172a72efac7e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#!/bin/sh -e
patch -p1 < x264-no-bash.patch
./configure \
--prefix=/usr \
--disable-swscale \
--enable-static \
--enable-pic \
--enable-shared
make
make DESTDIR="$1" install
|