25 lines
1.1 KiB
Bash
25 lines
1.1 KiB
Bash
#!/bin/bash
|
|
|
|
# This script will just display the usage information.
|
|
function usage()
|
|
{
|
|
echo "Usage: $0 OPTION [-nobinlightning]"
|
|
echo " -delta perform a build of only the rpms that are likely to change."
|
|
echo " -java build Java rpm."
|
|
echo " -local build localization rpms."
|
|
echo " -full perform a full build of all the rpms."
|
|
echo " -ade build all rpms that are packaged in the ade."
|
|
echo " -viz only build the Viz rpms (CAVE & AlertViz)."
|
|
echo " -edex only build the EDEX rpms."
|
|
echo " -shp only build the EDEX shapefile rpm."
|
|
echo " -python build Python rpms."
|
|
echo " -pydev build additional Python rpms."
|
|
echo " -qpid build only the QPID rpms."
|
|
echo " -ldm build the awips2-ldm rpm; requires root privileges."
|
|
echo " -upc build the awips2-edex-upc rpm."
|
|
echo " -dev call functions directly"
|
|
echo " -package create a yum repository tar file with the rpms that were just built."
|
|
echo " --help display this message and exit."
|
|
|
|
return 0
|
|
}
|