commit
9b1f0e9cbb
4 changed files with 108 additions and 0 deletions
@ -0,0 +1,37 @@ |
||||
<?xml version="1.0" encoding="UTF-8"?> |
||||
|
||||
<packages> |
||||
<package id="openattachmentbyextension" |
||||
name="Open Attachments By Extension" |
||||
revision="0.1" |
||||
reboot="false" |
||||
priority="10"> |
||||
|
||||
<!-- 7zip est nécessaire pour extraire l'XPI --> |
||||
<depends package-id="7zip" /> |
||||
<!-- Et bien sur, Thunderbird aussi est nécessaire ;-) --> |
||||
<depends package-id="thunderbird" /> |
||||
<!-- SumatraPDF est nécessaire pour l'ouverture des fichiers --> |
||||
<depends package-id="sumatrapdf" /> |
||||
|
||||
<variable name="PKG_VERSION" value="0.3.5" /> |
||||
<variable architecture="x86" name="INSTALL_PATH" value="%PROGRAMFILES%\Mozilla Thunderbird\distribution\bundles\openattachmentbyextension" /> |
||||
<variable architecture="x64" name="INSTALL_PATH" value="%PROGRAMFILES(x86)%\Mozilla Thunderbird\distribution\bundles\openattachmentbyextension" /> |
||||
|
||||
<check type="execute" path='%COMSPEC% /C type "%INSTALL_PATH%\install.rdf" | find /I "<em:version>%PKG_VERSION%"' condition="exitcodeequalto" value="0" /> |
||||
|
||||
<install include="remove" /> |
||||
<install cmd='%COMSPEC% /C if not exist "%INSTALL_PATH%" mkdir "%INSTALL_PATH%"' /> |
||||
<install cmd='"%SOFTWARE%\7zip\unzip.bat" "%SOFTWARE%\thunderbird_addons\OpenAttachmentByExtension-%PKG_VERSION%.xpi" "%INSTALL_PATH%"' /> |
||||
|
||||
<upgrade include="install" /> |
||||
|
||||
<remove cmd='taskkill /F /IM thunderbird.exe'> |
||||
<exit code="0" /> |
||||
<exit code="128" /> |
||||
</remove> |
||||
<remove cmd='%COMSPEC% /C if exist "%INSTALL_PATH%" del /Q /F "%INSTALL_PATH%"' /> |
||||
|
||||
</package> |
||||
</packages> |
||||
|
@ -0,0 +1,18 @@ |
||||
// OpenAttachmentByExtension |
||||
// Contourne un bug dans Thunderbird si le Content-Type n'est pas correct |
||||
|
||||
// 64bits ? |
||||
if(getenv("PROGRAMFILES(x86)") != "") { |
||||
var path_sumatrapdf = "C:\\Program Files (x86)\\SumatraPDF\\SumatraPDF.exe"; |
||||
} |
||||
// 32bits |
||||
else { |
||||
var path_sumatrapdf = "C:\\Program Files\\SumatraPDF\\SumatraPDF.exe"; |
||||
} |
||||
|
||||
lockPref("openattachment.extension.PDF",path_sumatrapdf); |
||||
lockPref("openattachment.extension.pdf",path_sumatrapdf); |
||||
lockPref("openattachment.use_charset",false); |
||||
|
||||
// Fin de la configuration de OpenAttachmentByExtension |
||||
|
Binary file not shown.
@ -0,0 +1,53 @@ |
||||
%define package openattachmentbyextension |
||||
%define version 0.3.5 |
||||
%define release 1.beta0 |
||||
|
||||
Name: wpkg-%{package} |
||||
Version: %{version} |
||||
Release: %{release}%{?dist} |
||||
Summary: %{package} for WPKG on iPasserelle |
||||
|
||||
Group: System/Softwares |
||||
URL: http://www.ipasserelle.com |
||||
Source0: %{name}-%{version}.tar.gz |
||||
License: misc |
||||
|
||||
BuildRoot: /var/tmp/%{name}-%{version}-%{release}-buildroot |
||||
BuildArch: noarch |
||||
BuildRequires: unix2dos |
||||
|
||||
Requires: ipasserelle-gp |
||||
Requires: wpkg-thunderbird |
||||
Requires: wpkg-7zip |
||||
Requires: wpkg-sumatrapdf |
||||
|
||||
%description |
||||
%{package} for WPKG on iPasserelle |
||||
|
||||
%prep |
||||
%setup -q -n %{name}-%{version} |
||||
|
||||
%build |
||||
unix2dos packages/* |
||||
|
||||
%install |
||||
/bin/rm -rf %{buildroot} |
||||
cp -a root %{buildroot}/ |
||||
mkdir -p %{buildroot}/home/e-smith/files/shares/wpkg/files/packages |
||||
mkdir -p %{buildroot}/home/e-smith/files/shares/wpkg/files/softwares/thunderbird_addons/ |
||||
cp -r softwares/* %{buildroot}/home/e-smith/files/shares/wpkg/files/softwares/thunderbird_addons/ |
||||
cp -r packages/* %{buildroot}/home/e-smith/files/shares/wpkg/files/packages/ |
||||
|
||||
%files |
||||
%defattr(-,root,root) |
||||
%doc CHANGELOG.git |
||||
/home/e-smith/files/shares/wpkg/files/ |
||||
/usr |
||||
|
||||
%clean |
||||
/bin/rm -rf %{buildroot} |
||||
|
||||
%changelog |
||||
* Thu May 31 2012 Daniel Berteaud <daniel@firewall-services.com> 0.3.5-1 |
||||
- initial release with Open Attachment By Extension 0.3.5 |
||||
|
Loading…
Reference in new issue