blob: 7f70ce9d916372b4ad5fdd537dddd406fb79f67e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
|
shopt -s extglob
pkg:extract
cd *
cd disklib
rm -f mntopts.h getmntopts.c
arm-apple-darwin-gcc -c *.c
arm-apple-darwin-ar -r libdisk.a *.o
cd ..
for tproj in !(fstyp|dev_mkdb|dump|fsck_hfs|fuser|mount_hfs|restore|quotacheck|ufs).tproj; do
tproj=$(basename "${tproj}" .tproj)
echo ${tproj}
extra=
if [[ ${tproj} = mount_cd9660 ]]; then
extra="${extra} -framework IOKit"
fi
if [[ ${tproj} = mount_cd9660 || ${tproj} = newfs_hfs ]]; then
extra="${extra} -framework CoreFoundation"
fi
arm-apple-darwin-gcc -Idisklib -o "${tproj}" $(find "${tproj}.tproj" -name '*.c') disklib/libdisk.a -lutil ${extra}
arm-apple-darwin-strip "${tproj}"
done
cd fstyp.tproj
for c in *.c; do
bin=../$(basename "${c}" .c)
arm-apple-darwin-gcc -o "${bin}" "${c}"
arm-apple-darwin-strip "${bin}"
done
cd ..
chmod u+s umount quota
pkg: mkdir -p /usr/bin /usr/libexec /usr/sbin /sbin
pkg: cp -a quota /usr/bin
pkg: cp -a vsdbutil repquota fdisk edquota quot quotaon /usr/sbin
pkg: cp -a vndevice /usr/libexec
pkg: cp -a clri dumpfs tunefs umount @(fsck|fstyp|mount|newfs)?(_*([a-z0-9])) /sbin
|