File: mp4box.sh

package info (click to toggle)
libavif 1.3.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 20,956 kB
  • sloc: ansic: 29,303; cpp: 13,260; sh: 1,145; xml: 1,040; java: 307; makefile: 51
file content (16 lines) | stat: -rwxr-xr-x 251 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/bin/bash
#
# Local build of MP4Box (part of the gpac project) for tests.

set -e

git clone https://github.com/gpac/gpac.git

cd gpac
git checkout 5d70253 # GPAC 2.4.0

./configure --static-bin
make -j
# MP4Box is in ext/gpac/bin/gcc/MP4Box

cd ..