summary refs log tree commit diff stats
path: root/po/remove-potcdate.sin
blob: 2436c49e786dea6c9b4a8f87803288496ed38164 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# Sed script that remove the POT-Creation-Date line in the header entry
# from a POT file.
#
# The distinction between the first and the following occurrences of the
# pattern is achieved by looking at the hold space.
/^"POT-Creation-Date: .*"$/{
x
# Test if the hold space is empty.
s/P/P/
ta
# Yes it was empty. First occurrence. Remove the line.
g
d
bb
:a
# The hold space was nonempty. Following occurrences. Do nothing.
x
:b
}
highlight .vg { color: #dd7700 } /* Name.Variable.Global */ .highlight .vi { color: #3333bb } /* Name.Variable.Instance */ .highlight .vm { color: #336699 } /* Name.Variable.Magic */ .highlight .il { color: #0000DD; font-weight: bold } /* Literal.Number.Integer.Long */
:: run this from a command prompt
@echo off

SET PACKAGE_NAME=libxml2-2.9.0

copy win32\vc10\x64\Release\runsuite.exe .
set PATH=%PATH%;..\build\x64\bin;win32\vc10\x64\Release
runsuite.exe
del runsuite.exe
set LIBXML_SRC=%cd%
set LIBXML_DEST=%cd%-x64
echo.Press return when ready to install!
pause

rmdir /q /s %LIBXML_DEST%
mkdir %LIBXML_DEST%
mkdir %LIBXML_DEST%\bin
mkdir %LIBXML_DEST%\include
mkdir %LIBXML_DEST%\include\libxml
mkdir %LIBXML_DEST%\lib
mkdir %LIBXML_DEST%\share
mkdir %LIBXML_DEST%\share\doc
mkdir %LIBXML_DEST%\share\doc\libxml2
copy win32\vc10\x64\Release\libxml2.dll %LIBXML_DEST%\bin
copy win32\vc10\x64\Release\runsuite.exe %LIBXML_DEST%\bin
copy win32\vc10\x64\Release\libxml2.lib %LIBXML_DEST%\lib
copy include\win32config.h %LIBXML_DEST%\include
copy include\wsockcompat.h %LIBXML_DEST%\include
xcopy /s include\libxml\*.h %LIBXML_DEST%\include\libxml\
copy COPYING %LIBXML_DEST%\share\doc\libxml2

cd %LIBXML_DEST%
set PATH=%PATH%;%ProgramFiles%\7-zip
del ..\%PACKAGE_NAME%-x64.7z
7z a ..\%PACKAGE_NAME%-x64.7z *
cd %LIBXML_SRC%
rmdir /q /s %LIBXML_DEST%

echo.Finished!
pause