~ubuntu-branches/ubuntu/trusty/argyll/trusty-proposed

« back to all changes in this revision

Viewing changes to libusbw/install.iss.in

  • Committer: Package Import Robot
  • Author(s): Artur Rona
  • Date: 2014-02-12 00:35:39 UTC
  • mfrom: (13.1.24 sid)
  • Revision ID: package-import@ubuntu.com-20140212003539-24tautzlitsiz61w
Tags: 1.5.1-5ubuntu1
* Merge from Debian unstable. (LP: #1275572) Remaining changes:
  - debian/control:
    + Build-depend on libtiff-dev rather than libtiff4-dev.
  - debian/control, debian/patches/06_fix_udev_rule.patch:
    + Fix udev rules to actually work; ENV{ACL_MANAGE} has
      stopped working ages ago, and with logind it's now the
      "uaccess" tag. Dropping also consolekit from Recommends.
  - debian/patches/drop-usb-db.patch:
    + Use hwdb builtin, instead of the obsolete usb-db
      in the udev rules.
* debian/patches/05_ftbfs-underlinkage.diff:
  - Dropped change, no needed anymore.
* Refresh the patches.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
; LIBUSB-WIN32, Generic Windows USB Library
2
 
; Copyright (c) 2002-2005 Stephan Meyer <ste_meyer@web.de>
3
 
;
4
 
; This program is free software; you can redistribute it and/or modify
5
 
; it under the terms of the GNU General Public License as published by
6
 
; the Free Software Foundation; either version 2 of the License, or
7
 
; (at your option) any later version.
8
 
9
 
; This program is distributed in the hope that it will be useful,
10
 
; but WITHOUT ANY WARRANTY; without even the implied warranty of
11
 
; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12
 
; GNU General Public License for more details.
13
 
14
 
; You should have received a copy of the GNU General Public License
15
 
; along with this program; if not, write to the Free Software
16
 
; Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
17
 
 
18
 
 
19
 
[Setup]
20
 
AppName = LibUSB-Win32
21
 
AppVerName = LibUSB-Win32-@VERSION@
22
 
AppId = LibUSB-Win32
23
 
AppPublisher = LibUSB-Win32 
24
 
AppPublisherURL = http://libusb-win32.sourceforge.net
25
 
AppVersion = @VERSION@
26
 
DefaultDirName = {pf}\LibUSB-Win32
27
 
DefaultGroupName = LibUSB-Win32
28
 
LicenseFile = installer_license.txt
29
 
Compression = lzma
30
 
SolidCompression = yes
31
 
OutputDir = .
32
 
OutputBaseFilename = libusb-win32-filter-bin-@VERSION@
33
 
; requires Win98SE, Win2k, or higher
34
 
MinVersion = 4.1.2222, 5 
35
 
PrivilegesRequired=admin
36
 
 
37
 
 
38
 
[Files]
39
 
; XP 32bit or lower
40
 
Source: "libusb0.sys"; DestDir: "{win}\system32\drivers"; Flags: uninsneveruninstall replacesameversion restartreplace promptifolder; OnlyBelowVersion: 0, 5.02.3790
41
 
Source: "libusb0.dll"; DestDir: "{win}\system32"; Flags: uninsneveruninstall replacesameversion restartreplace promptifolder; OnlyBelowVersion: 0, 5.02.3790
42
 
 
43
 
; XP 64bit or higher
44
 
Source: ".\ddk_make\libusb0.sys"; DestDir: "{win}\system32\drivers"; Flags: uninsneveruninstall replacesameversion restartreplace promptifolder; MinVersion: 0, 5.02.3790
45
 
Source: ".\ddk_make\libusb0.dll"; DestDir: "{win}\system32"; Flags: uninsneveruninstall replacesameversion restartreplace promptifolder; MinVersion: 0, 5.02.3790
46
 
Source: "libusb0.dll"; DestDir: "{syswow64}"; Flags: uninsneveruninstall replacesameversion restartreplace promptifolder; MinVersion: 0, 5.02.3790
47
 
 
48
 
Source: "@BIN_DIST_DIR@\lib\*.*"; DestDir: "{app}\lib"; Flags: recursesubdirs
49
 
Source: "@BIN_DIST_DIR@\include\*.*"; DestDir: "{app}\include"; Flags: recursesubdirs
50
 
Source: "@BIN_DIST_DIR@\examples\*.*"; DestDir: "{app}\examples"; Flags: recursesubdirs
51
 
 
52
 
Source: "install-filter.exe"; DestDir: "{app}\bin";
53
 
Source: "testlibusb.exe"; DestDir: "{app}\bin";
54
 
Source: "testlibusb-win.exe"; DestDir: "{app}\bin";
55
 
 
56
 
Source: "@BIN_DIST_DIR@\*.*"; DestDir: "{app}"
57
 
Source: "@SRC_DIST_DIR@\*.*"; DestDir: "{app}\src"; Flags: recursesubdirs
58
 
 
59
 
 
60
 
[Icons] 
61
 
Name: "{group}\Test Program"; Filename: "{app}\bin\testlibusb-win.exe"; 
62
 
Name: "{group}\Uninstall LibUsb-Win32"; Filename: "{uninstallexe}"
63
 
Name: "{group}\GPL License"; Filename: "{app}\COPYING_GPL.txt"
64
 
Name: "{group}\LGPL License"; Filename: "{app}\COPYING_LGPL.txt"
65
 
 
66
 
 
67
 
[Run]
68
 
Filename: "{app}\bin\install-filter.exe"; Parameters: "-i"; StatusMsg: "Creating kernel service (this may take a few seconds) ..."
69
 
Filename: "{app}\bin\testlibusb-win.exe"; Description: "Run test application"; Flags: postinstall
70
 
 
71
 
 
72
 
[UninstallRun]
73
 
Filename: "{app}\bin\install-filter.exe"; Parameters: "-u"
74
 
 
75
 
[Messages]
76
 
StatusUninstalling=Uninstalling %1 (this may take a few seconds) ...
77
 
 
78