blob: 052a4d8ddb89384a24003e3fc9fd4330d7ace6c0 (
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
|
#!/bin/sh
# create the catman versions of the manual pages
#
echo Making manual pages
./mkman
# build the sources
#
echo Making binaries
./makefile.pl ../../source/Makefile > Makefile
cd ../../source
# make -f ../packaging/SGI/Makefile clean
make -f ../packaging/SGI/Makefile all
cd ../packaging/SGI
# generate the packages
#
echo Generating Inst Packages
if [ ! -d bins ]; then
mkdir bins
fi
/usr/sbin/gendist -rbase / -sbase ../.. -idb samba.idb -spec samba.spec -dist ./bins -all
|