package: update version (2.8.0.7)
[sdk/emulator/qemu.git] / package / build.macos
1 #!/bin/sh -xe
2 # check build environment
3 prepare()
4 {
5         if [ "${TARGET_OS}" != "macos-64" ]
6         then
7                 exit 1
8         fi
9 }
10
11 # clean
12 clean()
13 {
14         echo "nothing to do"
15 }
16
17 # build
18 build()
19 {
20         . $SRCDIR/package/build.common
21         build_common
22 }
23
24 # install
25 install()
26 {
27         . $SRCDIR/package/build.common
28         install_common
29 }