summaryrefslogtreecommitdiff
path: root/bin/make_release
diff options
context:
space:
mode:
authorbrunsch <brunsch@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1998-06-11 18:41:59 +0000
committerbrunsch <brunsch@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1998-06-11 18:41:59 +0000
commit9d287bdaf9b808b0e6ec07498c249b1fa98d9ae6 (patch)
treee30fa5bc6e1b8e5b85f818d411fbe8f0f08255ea /bin/make_release
parent437abaa736cd63df24c48136ea820a0b4dce3715 (diff)
downloadATCD-9d287bdaf9b808b0e6ec07498c249b1fa98d9ae6.tar.gz
Now makes zip files also.
Diffstat (limited to 'bin/make_release')
-rwxr-xr-xbin/make_release25
1 files changed, 22 insertions, 3 deletions
diff --git a/bin/make_release b/bin/make_release
index db87aba0f8b..8568400b3f6 100755
--- a/bin/make_release
+++ b/bin/make_release
@@ -343,18 +343,37 @@ sub create_kit () {
if ($kit eq 'ace') {
system ("$exec_prefix" .
+ "$find $release_files $release_filter | " .
+ "grep -E \"\\.dsp|\\.dsw|\\.mak|\\.mdp|\\.exe\" | " .
+ "zip ACE.zip -q9@ &&" .
+ "$find $release_files $release_filter | " .
+ "grep -vE \"\\.dsp|\\.dsw|\\.mak|\\.mdp|\\.exe\" | " .
+ "zip ACE.zip -qlg9@ &&" .
+ "$find $release_lib_files $release_filter | " .
+ "grep -E \"\\.dsp|\\.dsw|\\.mak|\\.mdp|\\.exe\" | " .
+ "zip ACE-lib.zip -q9@ &&" .
+ "$find $release_lib_files $release_filter | " .
+ "grep -vE \"\\.dsp|\\.dsw|\\.mak|\\.mdp|\\.exe\" | " .
+ "zip ACE-lib.zip -qlg9@ &&" .
"$find $release_files $release_filter | $cpio -o -H tar | " .
"$gzip -9 > ACE.tar.gz && " .
"$find $release_lib_files $release_filter | $cpio -o -H tar | " .
"$gzip -9 > ACE-lib.tar.gz && " .
- "$chmod a+r ACE.tar.gz ACE-lib.tar.gz && " .
+ "$chmod a+r ACE.tar.gz ACE-lib.tar.gz ACE.zip ACE-lib.zip && " .
+ "$mv ACE.zip ACE-lib.zip ACE_wrappers/ &&" .
"$mv ACE.tar.gz ACE-lib.tar.gz ACE_wrappers/ $exec_suffix");
} elsif ($kit eq 'ace+tao') {
system ("$exec_prefix" .
+ "$find $release_files $release_filter | " .
+ "grep -E \"\\.dsp|\\.dsw|\\.mak|\\.mdp|\\.exe\" | " .
+ "zip ACE+TAO.zip -q9@ &&" .
+ "$find $release_files $release_filter | " .
+ "grep -vE \"\\.dsp|\\.dsw|\\.mak|\\.mdp|\\.exe\" | " .
+ "zip ACE+TAO.zip -qlg9@ &&" .
"$find $release_files $release_filter | $cpio -o -H tar | " .
"$gzip -9 > ACE+TAO.tar.gz && " .
- "$chmod a+r ACE+TAO.tar.gz && " .
- "$mv ACE+TAO.tar.gz ACE_wrappers/ $exec_suffix");
+ "$chmod a+r ACE+TAO.tar.gz ACE+TAO.zip && " .
+ "$mv ACE+TAO.tar.gz ACE+TAO.zip ACE_wrappers/ $exec_suffix");
}
0;