aboutsummaryrefslogtreecommitdiff
path: root/lib/librtmp/darwin_package_librtmp.sh
blob: 0d39403b862117602fd6ab82feb4a2eab3b55e2e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/bin/sh

SRC_LIB_RTMP="/opt/local/lib/librtmp.so.0"
if [ -e ./system ]; then
  DST_LIB_RTMP="./system/librtmp.so"
else
  DST_LIB_RTMP="../../system/librtmp.so"
fi

if [ -f $SRC_LIB_RTMP ]; then
  # copy librtmp into xbmc's system directory, we
  # rename it to librtmp.so and skip the symlinking.
  cp $SRC_LIB_RTMP $DST_LIB_RTMP
fi