mirror of
https://github.com/CCExtractor/ccextractor.git
synced 2024-12-25 20:32:10 +00:00
13 lines
568 B
Plaintext
13 lines
568 B
Plaintext
|
#!/bin/bash
|
||
|
SRC_LIBPNG="$(find ../src/libpng/ -name '*.c')"
|
||
|
SRC_ZLIB="$(find ../src/zlib/ -name '*.c')"
|
||
|
SRC_ZVBI="$(find ../src/zvbi/ -name '*.c')"
|
||
|
SRC_CCX="$(find ../src/lib_ccx/ -name '*.c')"
|
||
|
SRC_GPAC="$(find ../src/gpacmp4/ -name '*.c')"
|
||
|
SRC_HASH="$(find ../src/lib_hash/ -name '*.c')"
|
||
|
SRC_PROTOBUF="$(find ../src/protobuf-c/ -name '*.c')"
|
||
|
SRC_UTF8PROC="../src/utf8proc/utf8proc.c"
|
||
|
BLD_SOURCES="../src/ccextractor.c ../src/ccextractorapi_wrap.c $SRC_CCX $SRC_GPAC $SRC_ZLIB $SRC_ZVBI $SRC_LIBPNG $SRC_HASH $SRC_PROTOBUF $SRC_UTF8PROC"
|
||
|
|
||
|
python setup.py $BLD_SOURCES
|