summaryrefslogtreecommitdiffstats
path: root/scripts
diff options
context:
space:
mode:
authorKevin Mitchell <kevmitch@math.sfu.ca>2014-01-28 01:46:27 -0800
committerKevin Mitchell <kevmitch@math.sfu.ca>2014-01-28 06:58:45 -0800
commitfa14d6a40ba542282a745a49be90586d2e57948a (patch)
treea82512825ddf31efaaefe945965252e0bcfebeaa /scripts
parent6c279b73c4a42b772a63780de408733b042a87ed (diff)
downloadmpv-build-fa14d6a40ba542282a745a49be90586d2e57948a.tar.bz2
mpv-build-fa14d6a40ba542282a745a49be90586d2e57948a.tar.xz
build more features in debian package including custom-built fribidi
* build fribidi for the debian package * add dependencies to debian package taking cues from the official debian version enable everything except: + libsdl2 (not available in wheezy or precise) + libmpeg123 (build error on precise due to old version) + caca, radio interface, openal output, portaudio output, rsound/libroar/sndio input/output, sdl1, joystick, videoio.h/libpt * additional ffmpeg features (and dependencies) are still to be handled manually by the builder using the ffmpeg_options file as described in README.rst * adjust debian/changelog so building works on both debian and ubuntu (tested on saucy,precise,wheezy,sid amd64) * tweak debian parts of README.rst
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/fribidi-clean4
1 files changed, 3 insertions, 1 deletions
diff --git a/scripts/fribidi-clean b/scripts/fribidi-clean
index 20f7235..95f3225 100755
--- a/scripts/fribidi-clean
+++ b/scripts/fribidi-clean
@@ -1,3 +1,5 @@
#!/bin/sh
-make -C fribidi distclean
+if [ -f fribidi/Makefile ];then
+ make -C fribidi distclean
+fi