commit
54315a6bf5
3 changed files with 79 additions and 0 deletions
@ -0,0 +1,30 @@ |
|||||||
|
<?xml version="1.0" encoding="UTF-8"?> |
||||||
|
<packages> |
||||||
|
<package id="gimp" |
||||||
|
name="GNU Image Manipulation Program (GIMP)" |
||||||
|
revision="4" |
||||||
|
reboot="false" |
||||||
|
priority="8"> |
||||||
|
|
||||||
|
<variable name="PKG_VERSION" value="2.8.0" /> |
||||||
|
<variable architecture="x86" name="INSTALL_PATH" value="%PROGRAMFILES%" /> |
||||||
|
<variable architecture="x64" name="INSTALL_PATH" value="%PROGRAMFILES(x86)%" /> |
||||||
|
|
||||||
|
<check type="uninstall" condition="exists" path="GIMP %PKG_VERSION%" /> |
||||||
|
|
||||||
|
<install cmd='"%SOFTWARE%\gimp\gimp-%PKG_VERSION%-setup.exe" /VERYSILENT /NORESTART /DIR="%INSTALL_PATH%\GIMP"' /> |
||||||
|
<install cmd='%COMSPEC% /C del /q /f "%ALLUSERSPROFILE%\Bureau\GIMP 2.lnk"'> |
||||||
|
<exit code="any" /> |
||||||
|
</install> |
||||||
|
<install cmd='%COMSPEC% /C del /q /f "%PUBLIC%\Desktop\GIMP 2.lnk"'> |
||||||
|
<exit code="any" /> |
||||||
|
</install> |
||||||
|
|
||||||
|
<upgrade include="install" /> |
||||||
|
|
||||||
|
<remove cmd='"%INSTALL_PATH%\GIMP\setup\unins000.exe" /VERYSILENT /NORESTART' > |
||||||
|
<exit code="1" /> |
||||||
|
</remove> |
||||||
|
<remove cmd='%COMSPEC% /c rmdir /s /q "%INSTALL_PATH%\GIMP"' /> |
||||||
|
</package> |
||||||
|
</packages> |
Binary file not shown.
@ -0,0 +1,49 @@ |
|||||||
|
%define package gimp |
||||||
|
%define version 0.1 |
||||||
|
%define realversion 2.8.0 |
||||||
|
%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 Gimp 2.8.0 |
||||||
|
|
Loading…
Reference in new issue