File tree Expand file tree Collapse file tree 1 file changed +20
-1
lines changed Expand file tree Collapse file tree 1 file changed +20
-1
lines changed Original file line number Diff line number Diff line change @@ -9,7 +9,26 @@ echo 'PYTHON_VERSION: '$PYTHON_VERSION
9
9
echo ' PIP and brew installs'
10
10
11
11
pip install -r requirements.txt
12
- brew install ffmpeg
12
+
13
+ # Use the 32-bit 10.6+ built with gcc 4.2.1 set if you are running an older
14
+ # release on hardware that lacks 64-bit support.
15
+ BOOTSTRAP_TAR=" bootstrap-trunk-i386-20160509.tar.gz"
16
+ BOOTSTRAP_SHA=" e900f05c9f3aa8e2fb7ccee370467acf95f5df21"
17
+
18
+ # Download the selected bootstrap kit.
19
+ curl -O https://pkgsrc.joyent.com/packages/Darwin/bootstrap/${BOOTSTRAP_TAR}
20
+
21
+ # Verify SHA1 checksum.
22
+ echo " ${BOOTSTRAP_SHA} ${BOOTSTRAP_TAR} " > check-shasum
23
+ shasum -c check-shasum
24
+
25
+ # Install bootstrap kit to /opt/pkg.
26
+ sudo tar -zxpf ${BOOTSTRAP_TAR} -C /
27
+
28
+ # Reload PATH/MANPATH (pkgsrc installs /etc/paths.d/10-pkgsrc for new sessions)
29
+ eval $( /usr/libexec/path_helper)
30
+
31
+ sudo pkgin -y install ffmpeg3
13
32
ffmpeg -L
14
33
15
34
echo ' Config make'
You can’t perform that action at this time.
0 commit comments