commit
eece3bed30
3 changed files with 81 additions and 0 deletions
@ -0,0 +1,32 @@ |
||||
<?xml version="1.0" encoding="UTF-8"?> |
||||
<packages> |
||||
<package id="inkscape" |
||||
name="Inkscape" |
||||
revision="4" |
||||
reboot="false" |
||||
priority="10"> |
||||
|
||||
<variable name="PKG_VERSION" value="0.48.2" /> |
||||
<variable name="PKG_REV" value="1" /> |
||||
<variable architecture="x86" name="INSTALL_PATH" value="%PROGRAMFILES%\Inkscape" /> |
||||
<variable architecture="x64" name="INSTALL_PATH" value="%PROGRAMFILES(x86)%\Inkscape" /> |
||||
|
||||
<check type="uninstall" condition="exists" path="Inkscape %PKG_VERSION%" /> |
||||
|
||||
<install cmd='"%SOFTWARE%\inkscape\Inkscape-%PKG_VERSION%-%PKG_REV%-win32.exe" /S' /> |
||||
<install cmd='%COMSPEC% /C del /q /f "%ALLUSERSPROFILE%\Bureau\Inkscape.lnk"'> |
||||
<exit code="0" /> |
||||
<exit code="1" /> |
||||
</install> |
||||
<install cmd='%COMSPEC% /C del /q /f "%PUBLIC%\Desktop\Inkscape.lnk"'> |
||||
<exit code="0" /> |
||||
<exit code="1" /> |
||||
</install> |
||||
|
||||
<upgrade include="install" /> |
||||
|
||||
<downgrade include="install" /> |
||||
|
||||
<remove cmd='"%INSTALL_PATH%\uninstall.exe" /S' /> |
||||
</package> |
||||
</packages> |
Binary file not shown.
@ -0,0 +1,49 @@ |
||||
%define package inkscape |
||||
%define version 0.1 |
||||
%define realversion 0.48.2 |
||||
%define release 0.beta1 |
||||
|
||||
Name: wpkg-%{package} |
||||
Version: %{version}+%{realversion} |
||||
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 |
||||
|
||||
%description |
||||
%{package} for WPKG on iPasserelle |
||||
|
||||
%prep |
||||
%setup -q -n %{name}-%{version} |
||||
|
||||
%build |
||||
unix2dos packages/* |
||||
|
||||
%install |
||||
/bin/rm -rf %{buildroot} |
||||
mkdir -p %{buildroot}/home/e-smith/files/shares/wpkg/files/packages |
||||
mkdir -p %{buildroot}/home/e-smith/files/shares/wpkg/files/softwares/%{package} |
||||
cp -r softwares/* %{buildroot}/home/e-smith/files/shares/wpkg/files/softwares/%{package}/ |
||||
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/ |
||||
|
||||
%clean |
||||
/bin/rm -rf %{buildroot} |
||||
|
||||
%changelog |
||||
* Tue Jun 5 2012 Daniel Berteaud <daniel@firewall-services.com> |
||||
- initial release with Inkscape 0.48.2 |
||||
|
Loading…
Reference in new issue