diff options
author | Joe Hunkeler <jhunkeler@gmail.com> | 2015-08-11 16:51:37 -0400 |
---|---|---|
committer | Joe Hunkeler <jhunkeler@gmail.com> | 2015-08-11 16:51:37 -0400 |
commit | 40e5a5811c6ffce9b0974e93cdd927cbcf60c157 (patch) | |
tree | 4464880c571602d54f6ae114729bf62a89518057 /unix/mkpkg | |
download | iraf-osx-40e5a5811c6ffce9b0974e93cdd927cbcf60c157.tar.gz |
Repatch (from linux) of OSX IRAF
Diffstat (limited to 'unix/mkpkg')
-rw-r--r-- | unix/mkpkg | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/unix/mkpkg b/unix/mkpkg new file mode 100644 index 00000000..66b91f85 --- /dev/null +++ b/unix/mkpkg @@ -0,0 +1,17 @@ +# UNIX/IRAF HSI. + +summary: + $ifeq (HOSTID, unix) + $ifeq (MACH, dsux) + ! grep -v ':$$' spool | grep -v '^xc' | grep -v '^ar'\ + | grep -v '^check file' | grep -v 'never used$' + $else + ! grep -v ':$$' spool | grep -v '^xc' | grep -v '^ar'\ + | grep -v '^check file' | grep -v '^a - '\ + | grep -v '^+ [g]*cc' | grep -v '^+ ar ' | grep -v '^+ rm'\ + | grep -v '^+ f77' + $endif + $else + $echo "mkpkg summary only available on a UNIX system" + $endif + ; |