forked from kiss-community/repo
14 lines
196 B
Bash
Executable File
14 lines
196 B
Bash
Executable File
#!/bin/sh -e
|
|
|
|
patch -p1 < portability.patch
|
|
|
|
./configure \
|
|
--prefix=/usr \
|
|
--disable-swscale \
|
|
--enable-static \
|
|
--enable-pic \
|
|
--enable-shared
|
|
|
|
make
|
|
make DESTDIR="$1" install
|