commit
6c1712d4e1
3 changed files with 82 additions and 0 deletions
@ -0,0 +1,33 @@ |
||||
<?xml version="1.0" encoding="UTF-8"?> |
||||
<packages> |
||||
<package id='vlc' |
||||
name='Lecteur multimedia VideoLAN Client' |
||||
revision='5' |
||||
priority='10' |
||||
reboot='false' > |
||||
|
||||
<variable name="PKG_VERSION" value="2.0.1" /> |
||||
<variable architecture="x86" name="INSTALL_PATH" value="%PROGRAMFILES%" /> |
||||
<variable architecture="x64" name="INSTALL_PATH" value="%PROGRAMFILES(x86)%" /> |
||||
|
||||
<check type='uninstall' condition='exists' path='VLC media player %PKG_VERSION%' /> |
||||
|
||||
<install include='remove' /> |
||||
<install cmd='%COMSPEC% /C if exist "%SOFTWARE%\vlc\vlc-%PKG_VERSION%-win32.exe" start /wait "VLC" "%SOFTWARE%\vlc\vlc-%PKG_VERSION%-win32.exe" /S /NCRC /D="%INSTALL_PATH%"'/> |
||||
<!-- XP --> |
||||
<install cmd='%COMSPEC% /C del /F /Q "%ALLUSERSPROFILE%\Bureau\VLC media player**"'> |
||||
<exit code="any" /> |
||||
</install> |
||||
<!-- Vista / 7 --> |
||||
<install cmd='%COMSPEC% /C del /F /Q "%PUBLIC%\Desktop\VLC media player**"'> |
||||
<exit code="any" /> |
||||
</install> |
||||
|
||||
<upgrade include='install'/> |
||||
|
||||
<downgrade include='install' /> |
||||
|
||||
<remove cmd='%COMSPEC% /c if exist "%INSTALL_PATH%\VideoLAN\VLC\uninstall.exe" "%INSTALL_PATH%\VideoLAN\VLC\uninstall.exe" /S _?=%INSTALL_PATH%\VideoLAN\VLC'/> |
||||
<remove cmd='%COMSPEC% /C if exist "%INSTALL_PATH%\VideoLAN\VLC" rmdir /S /Q "%INSTALL_PATH%\VideoLAN"'/> |
||||
</package> |
||||
</packages> |
Binary file not shown.
@ -0,0 +1,49 @@ |
||||
%define package vlc |
||||
%define version 0.1 |
||||
%define realversion 2.0.1 |
||||
%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 VLC 2.0.1 |
||||
|
Loading…
Reference in new issue