summaryrefslogtreecommitdiff
path: root/lib/utfcpp/v2_0/buildrelease.pl
diff options
context:
space:
mode:
Diffstat (limited to 'lib/utfcpp/v2_0/buildrelease.pl')
-rwxr-xr-xlib/utfcpp/v2_0/buildrelease.pl18
1 files changed, 0 insertions, 18 deletions
diff --git a/lib/utfcpp/v2_0/buildrelease.pl b/lib/utfcpp/v2_0/buildrelease.pl
deleted file mode 100755
index ed3a17bb..00000000
--- a/lib/utfcpp/v2_0/buildrelease.pl
+++ /dev/null
@@ -1,18 +0,0 @@
-#! /usr/bin/perl
-
-$release_files = 'source/utf8.h source/utf8/core.h source/utf8/checked.h source/utf8/unchecked.h doc/utf8cpp.html doc/ReleaseNotes';
-
-# First get the latest version
-`svn update`;
-
-# Then construct the name of the zip file
-$argc = @ARGV;
-if ($argc > 0) {
- $zip_name = $ARGV[0];
-}
-else {
- $zip_name = "utf8";
-}
-
-# Zip the files to an archive
-`zip $zip_name $release_files`;