blob: 9d177e4b6fc6429c60a4246269fc09a069b6d053 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
#!/usr/sfw/bin/gmake
VERS=1.0-1
default: clean package
package:
-mkdir tmp tmp/bcfg2-server tmp/bcfg2
-cd ../ && /opt/csw/bin/python setup.py install --prefix=$(PWD)
-cat bin/bcfg2 | sed -e 's!/usr/bin/python!/opt/csw/bin/python!' > bin/bcfg2.new && mv bin/bcfg2.new bin/bcfg2
-pkgmk -o -a `uname -m` -f prototype.bcfg2 -d $(PWD)/tmp -r $(PWD)
-pkgmk -o -a `uname -m` -f prototype.bcfg2-server -d $(PWD)/tmp -r $(PWD)
-pkgtrans -o -s $(PWD)/tmp $(PWD)/bcfg2-$(VERS) SCbcfg2
-pkgtrans -o -s $(PWD)/tmp $(PWD)/bcfg2-server-$(VERS) SCbcfg2-server
-gzip -f $(PWD)/bcfg2-$(VERS)
-gzip -f $(PWD)/bcfg2-server-$(VERS)
clean:
-rm -rf tmp bin lib share
-rm -rf bcfg2-$(VERS).gz bcfg2-server-$(VERS).gz
|