98 lines
2.3 KiB
RPMSpec
98 lines
2.3 KiB
RPMSpec
|
#
|
||
|
# AWIPS II edex-shapefiles Spec File
|
||
|
#
|
||
|
Name: awips2-edex-shapefiles
|
||
|
Summary: AWIPS II Edex
|
||
|
Version: %{_component_version}
|
||
|
Release: %{_component_release}
|
||
|
Group: AWIPSII
|
||
|
BuildRoot: %{_build_root}
|
||
|
BuildArch: noarch
|
||
|
URL: N/A
|
||
|
License: N/A
|
||
|
Distribution: N/A
|
||
|
Vendor: Raytheon
|
||
|
Packager: %{_build_site}
|
||
|
|
||
|
AutoReq: no
|
||
|
Provides: awips2-edex-shapefiles
|
||
|
Requires: awips2
|
||
|
Requires: awips2-edex
|
||
|
Requires: awips2-edex-base
|
||
|
|
||
|
# Turn off the brp-python-bytecompile script
|
||
|
%global __os_install_post %(echo '%{__os_install_post}' | sed -e 's!/usr/lib[^[:space:]]*/brp-python-bytecompile[[:space:]].*$!!g')
|
||
|
# disable jar repacking
|
||
|
%global __os_install_post %(echo '%{__os_install_post}' | sed -e 's!/usr/lib[^[:space:]]*/brp-java-repack-jars[[:space:]].*$!!g')
|
||
|
|
||
|
%description
|
||
|
AWIPS II Edex Shapefiles - includes the shapefiles required by AWIPS II.
|
||
|
|
||
|
%prep
|
||
|
# Verify That The User Has Specified A BuildRoot.
|
||
|
if [ "%{_build_root}" = "" ]
|
||
|
then
|
||
|
echo "ERROR: The RPM Build Root has not been specified."
|
||
|
exit 1
|
||
|
fi
|
||
|
|
||
|
if [ -d %{_build_root} ]; then
|
||
|
rm -rf %{_build_root}
|
||
|
fi
|
||
|
|
||
|
%build
|
||
|
|
||
|
%install
|
||
|
mkdir -p %{_build_root}/awips2/edex/data/utility/edex_static/base/shapefiles
|
||
|
if [ $? -ne 0 ]; then
|
||
|
exit 1
|
||
|
fi
|
||
|
|
||
|
SHAPEFILES=%{_static_files}/maps/shapefiles
|
||
|
if [ ! -d ${SHAPEFILES} ]; then
|
||
|
echo "File ${SHAPEFILES} not found!"
|
||
|
exit 1
|
||
|
fi
|
||
|
|
||
|
cp -r ${SHAPEFILES}/* \
|
||
|
%{_build_root}/awips2/edex/data/utility/edex_static/base/shapefiles
|
||
|
if [ $? -ne 0 ]; then
|
||
|
exit 1
|
||
|
fi
|
||
|
|
||
|
mkdir -p %{_build_root}/awips2/edex/data/utility/edex_static/base/shapefiles/WarnGenLoc
|
||
|
if [ $? -ne 0 ]; then
|
||
|
exit 1
|
||
|
fi
|
||
|
|
||
|
|
||
|
# Create a list of all files packaged for /awips2/edex/data/utility
|
||
|
UTILITY=/awips2/edex/data/utility
|
||
|
if [ -d %{_build_root}/$UTILITY ]; then
|
||
|
cd %{_build_root}/$UTILITY
|
||
|
find . -type f > %{_build_root}/awips2/edex/util_filelist.%{name}.txt
|
||
|
fi
|
||
|
|
||
|
%post
|
||
|
|
||
|
# Change date stamp of utility files.
|
||
|
# This step is necessary because certain parts of the system (namely GFE) rely
|
||
|
# on modification time to determine if a localization file has changed and
|
||
|
# needs to be reloaded.
|
||
|
UTILITY=/awips2/edex/data/utility
|
||
|
UTIL_FILENAME=/awips2/edex/util_filelist.%{name}.txt
|
||
|
if [ -d $UTILITY ] && [ -f $UTIL_FILENAME ]; then
|
||
|
while read fileName
|
||
|
do
|
||
|
touch "$UTILITY/$fileName"
|
||
|
done < $UTIL_FILENAME
|
||
|
rm -f $UTIL_FILENAME
|
||
|
fi
|
||
|
|
||
|
%clean
|
||
|
rm -rf ${RPM_BUILD_ROOT}
|
||
|
|
||
|
%files
|
||
|
%defattr(775,awips,fxalpha,755)
|
||
|
/awips2/edex/*
|