~ubuntu-branches/ubuntu/intrepid/plplot/intrepid

« back to all changes in this revision

Viewing changes to sys/win32/msdev/runinstall.bat

  • Committer: Bazaar Package Importer
  • Author(s): Rafael Laboissiere
  • Date: 2006-11-04 10:19:34 UTC
  • mfrom: (2.1.8 edgy)
  • Revision ID: james.westby@ubuntu.com-20061104101934-mlirvdg4gpwi6i5q
Tags: 5.6.1-10
* Orphaning the package
* debian/control: Changed the maintainer to the Debian QA Group

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
@echo off
 
2
echo Installing PLplot in "%1"
 
3
rem
 
4
rem PLplot: installation script for Windows
 
5
rem Requires one argument: the directory where everything
 
6
rem should be stored
 
7
 
 
8
rem If the directory exist, assume we can simply copy the files
 
9
rem
 
10
if exists %1 goto copy
 
11
md "%1"
 
12
md "%1\doc"
 
13
md "%1\include"
 
14
md "%1\lib"
 
15
 
 
16
:copy
 
17
copy .\plplib\plplot.lib "%1\lib"
 
18
copy .\plpdll\Release\plplotd.lib "%1\lib"
 
19
copy .\plpdll\Release\plplotd.dll "%1\lib"
 
20
copy .\plplot_win.html "%1\doc"
 
21
copy .\..\..\..\tmp\*.h "%1\include"
 
22
copy .\..\..\..\data\*.fnt "%1\lib"
 
 
b'\\ No newline at end of file'