@@ -0,0 +1,3 @@
|
||||
<PISI>
|
||||
<Name>hardware.emulator</Name>
|
||||
</PISI>
|
||||
@@ -0,0 +1,79 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
#
|
||||
# Licensed under the GNU General Public License, version 3.
|
||||
# See the file http://www.gnu.org/licenses/gpl.txt
|
||||
|
||||
from pisi.actionsapi import autotools
|
||||
from pisi.actionsapi import pisitools
|
||||
from pisi.actionsapi import shelltools
|
||||
from pisi.actionsapi import get
|
||||
|
||||
def setup():
|
||||
shelltools.system("install=wine.keyring")
|
||||
# For 32bit machines:
|
||||
# * It get compiled with the normal options below. The emul32 are ignored
|
||||
# on 32bit machines. Nothing is added to options variable.
|
||||
#
|
||||
# For 64bit machines:
|
||||
# * First we compile for 64bit with the option --enable-win64. These build
|
||||
# files are stored in the normal "work" dir
|
||||
# * In the second run (for emul32 buildType), the 32bit part is compiled
|
||||
# with the spesific libdir and the --with-wine64 options that is pointing
|
||||
# to the 64bit files that was compiled in the first step (files in the work)
|
||||
#
|
||||
# More info can be obtained here: http://wiki.winehq.org/Wine64
|
||||
# shelltools.export("CPPFLAGS", "-D_FORTIFY_SOURCE=2 -D_FORTIFY_SOURCE=0")
|
||||
|
||||
shelltools.system("make -C ./wine-staging-%s/patches DESTDIR=$(pwd) install" %get.srcVERSION())
|
||||
pisitools.flags.add("-fno-omit-frame-pointer")
|
||||
autotools.autoreconf("-vif")
|
||||
options = "--without-capi \
|
||||
--with-curses \
|
||||
--without-hal \
|
||||
--without-gstreamer \
|
||||
--with-dbus \
|
||||
--with-opengl \
|
||||
--with-alsa \
|
||||
--with-x \
|
||||
--with-xattr \
|
||||
--prefix=/usr"
|
||||
|
||||
if get.buildTYPE() == "emul32":
|
||||
shelltools.export("PKG_CONFIG_PATH", "/usr/lib32/pkgconfig")
|
||||
options += " --with-wine64=%s/work/wine-%s/build-wine \
|
||||
--libdir=/usr/lib32 \
|
||||
" % (get.pkgDIR(), get.srcVERSION())
|
||||
|
||||
shelltools.system("mkdir build-wine")
|
||||
shelltools.cd("build-wine")
|
||||
shelltools.system(". ../configure %s" %options)
|
||||
|
||||
elif get.ARCH() == "x86_64":
|
||||
options += " --enable-win64 \
|
||||
--libdir=/usr/lib \
|
||||
"
|
||||
shelltools.system("mkdir build-wine")
|
||||
shelltools.cd("build-wine")
|
||||
shelltools.system(". ../configure %s" %options)
|
||||
|
||||
|
||||
|
||||
def build():
|
||||
shelltools.cd("build-wine")
|
||||
autotools.make()
|
||||
|
||||
def install():
|
||||
# We need especially specify libdir and dlldir prefixes. Otherwise the
|
||||
# 32bit parts overwrite the 64bit files under /usr/lib
|
||||
|
||||
shelltools.cd("build-wine")
|
||||
|
||||
if get.buildTYPE() == "emul32":
|
||||
autotools.install("UPDATE_DESKTOP_DATABASE=/bin/true libdir=%s/usr/lib32 dlldir=%s/usr/lib32/wine" % (get.installDIR(), get.installDIR()))
|
||||
else:
|
||||
autotools.install("UPDATE_DESKTOP_DATABASE=/bin/true libdir=%s/usr/lib dlldir=%s/usr/lib/wine" % (get.installDIR(), get.installDIR()))
|
||||
|
||||
shelltools.cd("..")
|
||||
|
||||
pisitools.dodoc("ANNOUNCE", "AUTHORS", "COPYING.LIB", "LICENSE*", "README", "documentation/README.*")
|
||||
|
||||
@@ -0,0 +1,3 @@
|
||||
[Desktop Entry]
|
||||
Icon=wine
|
||||
Name=Wine
|
||||
@@ -0,0 +1,10 @@
|
||||
[Desktop Entry]
|
||||
Encoding=UTF-8
|
||||
Name=Wine Task Manager
|
||||
Exec=wine taskmgr
|
||||
Icon=utilities-system-monitor
|
||||
Terminal=false
|
||||
Type=Application
|
||||
Categories=Application;X-Wine;
|
||||
|
||||
Name[tr]=Wine Görev Yöneticisi
|
||||
@@ -0,0 +1,10 @@
|
||||
[Desktop Entry]
|
||||
Encoding=UTF-8
|
||||
Name=Add/Remove Windows Programs
|
||||
Exec=wine uninstaller
|
||||
Icon=user-trash
|
||||
Terminal=false
|
||||
Type=Application
|
||||
Categories=Application;X-Wine;
|
||||
|
||||
Name[tr]=Windows Programlarını Ekle/Kaldır
|
||||
@@ -0,0 +1,7 @@
|
||||
[Desktop Entry]
|
||||
Type=Application
|
||||
Name=Windows Installer File
|
||||
Name[ar]=مثبت حزم واين
|
||||
Exec=wine %f
|
||||
MimeType=application/x-ole-storage;text/mspg-legacyinfo;
|
||||
Hidden=true
|
||||
+11
@@ -0,0 +1,11 @@
|
||||
#!/usr/bin/env xdg-open
|
||||
[Desktop Entry]
|
||||
Name=Wine OLE View
|
||||
Comment=Windows OLE View
|
||||
Name[ar]=عارض العناصر
|
||||
Comment[ar]=لعرض العناصر البيئية في واين
|
||||
Exec=wine oleview
|
||||
Icon=wine
|
||||
Terminal=false
|
||||
Type=Application
|
||||
Categories=X-Wine;
|
||||
@@ -0,0 +1,10 @@
|
||||
[Desktop Entry]
|
||||
Name=WineMine
|
||||
Comment=Wine Minesweeper
|
||||
Name[ar]=كانسة ألغام واين
|
||||
Comment[ar]=لعبة كانسة ألغام واين
|
||||
Exec=winemine
|
||||
Icon=winemine
|
||||
Terminal=false
|
||||
Type=Application
|
||||
Categories=Game;LogicGame;
|
||||
+11
@@ -0,0 +1,11 @@
|
||||
#!/usr/bin/env xdg-open
|
||||
[Desktop Entry]
|
||||
Name=Wine Help
|
||||
Comment=Windows Help Browser
|
||||
Name[ar]=أداة المساعدة في واين
|
||||
Comment[ar]=استعراض ملفات المساعدة بتنسيقات وندوز
|
||||
Exec=wine winhlp32
|
||||
Icon=winhelp
|
||||
Terminal=false
|
||||
Type=Application
|
||||
Categories=X-Wine;
|
||||
@@ -0,0 +1,13 @@
|
||||
<!DOCTYPE Menu
|
||||
PUBLIC '-//freedesktop//DTD Menu 1.0//EN'
|
||||
'http://standards.freedesktop.org/menu-spec/menu-1.0.dtd'>
|
||||
<Menu>
|
||||
<Name>Applications</Name>
|
||||
<Menu>
|
||||
<Name>wine-wine</Name>
|
||||
<Directory>Wine.directory</Directory>
|
||||
<Include>
|
||||
<Category>X-Wine</Category>
|
||||
</Include>
|
||||
</Menu>
|
||||
</Menu>
|
||||
@@ -0,0 +1,10 @@
|
||||
[Desktop Entry]
|
||||
Encoding=UTF-8
|
||||
Name=Wine Configuration
|
||||
Exec=winecfg
|
||||
Icon=configure
|
||||
Terminal=false
|
||||
Type=Application
|
||||
Categories=Application;X-Wine;
|
||||
|
||||
Name[tr]=Wine Ayarları
|
||||
@@ -0,0 +1,10 @@
|
||||
[Desktop Entry]
|
||||
Encoding=UTF-8
|
||||
Name=Wine File Manager
|
||||
Exec=winefile
|
||||
Icon=system-file-manager
|
||||
Terminal=false
|
||||
Type=Application
|
||||
Categories=Application;X-Wine;
|
||||
|
||||
Name[tr]=Wine Dosya Yöneticisi
|
||||
+12
@@ -0,0 +1,12 @@
|
||||
#!/usr/bin/env xdg-open
|
||||
|
||||
[Desktop Entry]
|
||||
Name=Winetricks
|
||||
X-GNOME-FullName=Winetricks
|
||||
Comment=Wine
|
||||
Exec=/usr/bin/winetricks
|
||||
Terminal=false
|
||||
Type=Application
|
||||
StartupNotify=false
|
||||
Icon=wine
|
||||
Categories=System
|
||||
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,262 @@
|
||||
<?xml version="1.0" ?>
|
||||
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>wine</Name>
|
||||
<Homepage>http://www.winehq.org/</Homepage>
|
||||
<Packager>
|
||||
<Name>PisiLinux Community</Name>
|
||||
<Email>admins@pisilinux.org</Email>
|
||||
</Packager>
|
||||
<ExcludeArch>i686</ExcludeArch>
|
||||
<License>LGPLv2.1</License>
|
||||
<IsA>app:console</IsA>
|
||||
<Summary>WINE Is Not An Emulator, which lets you run Microsoft Windows applications</Summary>
|
||||
<Description>Wine allows running Windows 3.*, Windows 95/98 and Windows NT programs on a i386 (or compatible) machine running X11. It is still alpha level code; don't expect everything to work.</Description>
|
||||
<Archive sha1sum="157efa125c047ac5a2f64f5ef2d26e9592645f82" type="tarbz2">https://dl.winehq.org/wine/source/1.9/wine-1.9.13.tar.bz2</Archive>
|
||||
<Archive sha1sum="e580c503ca9289f24ee05d249ef1055a09ba1639" type="targz" target="wine-1.9.13">https://github.com/wine-compholio/wine-staging/archive/v1.9.13.tar.gz</Archive>
|
||||
|
||||
<BuildDependencies>
|
||||
<Dependency>lcms2-devel</Dependency>
|
||||
<Dependency>libao-devel</Dependency>
|
||||
<Dependency>libSM-devel</Dependency>
|
||||
<Dependency>mpg123-devel</Dependency>
|
||||
<Dependency>openal-devel</Dependency>
|
||||
<Dependency>libXext-devel</Dependency>
|
||||
<Dependency>libxslt-32bit</Dependency>
|
||||
<Dependency>mesa-glu-devel</Dependency>
|
||||
<Dependency>alsa-lib-devel</Dependency>
|
||||
<Dependency>gstreamer-devel</Dependency>
|
||||
<Dependency>openldap-client</Dependency>
|
||||
<Dependency>libgphoto2-devel</Dependency>
|
||||
<Dependency>pulseaudio-libs-devel</Dependency>
|
||||
<Dependency>gst-plugins-base-devel</Dependency>
|
||||
|
||||
<!-- Libraries used with dlopen() -->
|
||||
<Dependency>cups-devel</Dependency>
|
||||
<Dependency>gnutls-devel</Dependency>
|
||||
<Dependency>libXcursor-devel</Dependency>
|
||||
<Dependency>libXi-devel</Dependency>
|
||||
<Dependency>libXrandr-devel</Dependency>
|
||||
<Dependency>libXxf86vm-devel</Dependency>
|
||||
<Dependency>sane-backends-devel</Dependency>
|
||||
<Dependency>unixODBC-devel</Dependency>
|
||||
|
||||
<!-- configure script also checks for these librarires -->
|
||||
<Dependency>dbus-devel</Dependency>
|
||||
<Dependency>fontconfig-devel</Dependency>
|
||||
<Dependency>gsm-devel</Dependency>
|
||||
<Dependency>libjpeg-turbo-devel</Dependency>
|
||||
<Dependency>libXcomposite-devel</Dependency>
|
||||
<Dependency>libXinerama-devel</Dependency>
|
||||
<Dependency>libxslt-devel</Dependency>
|
||||
<Dependency>tiff-devel</Dependency>
|
||||
<Dependency>giflib-devel</Dependency>
|
||||
<Dependency>v4l-utils</Dependency>
|
||||
<Dependency>libpng</Dependency>
|
||||
<Dependency>libtevent-devel</Dependency>
|
||||
|
||||
<!-- Audio servers are not necessary for runtime -->
|
||||
<Dependency>jack-audio-connection-kit-devel</Dependency>
|
||||
|
||||
<!-- fontforge is needed to build fonts -->
|
||||
<Dependency>fontforge</Dependency>
|
||||
<Dependency>libpcap-devel</Dependency>
|
||||
<Dependency>util-linux</Dependency>
|
||||
<Dependency>ncurses-devel</Dependency>
|
||||
</BuildDependencies>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>wine</Name>
|
||||
<IsA>app:gui</IsA>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>lcms2</Dependency>
|
||||
<Dependency>libX11</Dependency>
|
||||
<Dependency>libSM</Dependency>
|
||||
<Dependency>mpg123</Dependency>
|
||||
<Dependency>openal</Dependency>
|
||||
<Dependency>libXext</Dependency>
|
||||
<Dependency>mesa-glu</Dependency>
|
||||
<Dependency>alsa-lib</Dependency>
|
||||
<Dependency>gstreamer</Dependency>
|
||||
<Dependency>libgphoto2</Dependency>
|
||||
<Dependency>libXcomposite</Dependency>
|
||||
<Dependency>openldap-client</Dependency>
|
||||
<Dependency>pulseaudio-libs</Dependency>
|
||||
<Dependency>gst-plugins-base</Dependency>
|
||||
<Dependency>libjpeg-turbo</Dependency>
|
||||
<Dependency>libtevent</Dependency>
|
||||
<Dependency>p11-kit</Dependency>
|
||||
<Dependency>libxml2</Dependency>
|
||||
<Dependency>giflib</Dependency>
|
||||
<Dependency>ncurses</Dependency>
|
||||
<!-- Libraries used with dlopen() -->
|
||||
<Dependency>cups</Dependency>
|
||||
<Dependency>gnutls</Dependency>
|
||||
<Dependency>libXcursor</Dependency>
|
||||
<Dependency>libXi</Dependency>
|
||||
<Dependency>libXrandr</Dependency>
|
||||
<Dependency>libXxf86vm</Dependency>
|
||||
<Dependency>sane-backends</Dependency>
|
||||
<Dependency>unixODBC</Dependency>
|
||||
|
||||
<!-- required by winetricks -->
|
||||
<Dependency>cabextract</Dependency>
|
||||
<Dependency>libpcap</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="data">/etc/xdg</Path>
|
||||
<Path fileType="executable">/usr/bin</Path>
|
||||
<Path fileType="library">/usr/lib</Path>
|
||||
<Path fileType="data">/usr/share/applications</Path>
|
||||
<Path fileType="data">/usr/share/desktop-directories</Path>
|
||||
<Path fileType="data">/usr/share/wine</Path>
|
||||
<Path fileType="localedata">/usr/share/locale</Path>
|
||||
<Path fileType="doc">/usr/share/doc</Path>
|
||||
<Path fileType="man">/usr/share/man</Path>
|
||||
</Files>
|
||||
<AdditionalFiles>
|
||||
<!-- winetricks script from http://kegel.com/wine/winetricks -->
|
||||
<AdditionalFile target="/usr/bin/winetricks" permission="0755">winetricks</AdditionalFile>
|
||||
<!-- wisotool script from http://kegel.com/wine/wisotool -->
|
||||
<AdditionalFile target="/usr/bin/wisotool" permission="0755">wisotool</AdditionalFile>
|
||||
|
||||
<AdditionalFile target="/etc/xdg/menus/applications-merged/wine.menu" permission="0644">menu/wine.menu</AdditionalFile>
|
||||
<AdditionalFile target="/usr/share/desktop-directories/Wine.directory" permission="0644">menu/Wine.directory</AdditionalFile>
|
||||
|
||||
<AdditionalFile target="/usr/share/applications/wine/taskmgr.desktop" permission="0644">menu/taskmgr.desktop</AdditionalFile>
|
||||
<AdditionalFile target="/usr/share/applications/wine/uninstaller.desktop" permission="0644">menu/uninstaller.desktop</AdditionalFile>
|
||||
<AdditionalFile target="/usr/share/applications/wine/winecfg.desktop" permission="0644">menu/winecfg.desktop</AdditionalFile>
|
||||
<AdditionalFile target="/usr/share/applications/wine/winefile.desktop" permission="0644">menu/winefile.desktop</AdditionalFile>
|
||||
<AdditionalFile target="/usr/share/applications/wine/winetricks.desktop" permission="0644">menu/winetricks.desktop</AdditionalFile>
|
||||
<AdditionalFile target="/usr/share/applications/wine/wine-mime-msi.desktop" permission="0644">menu/wine-mime-msi.desktop</AdditionalFile>
|
||||
<AdditionalFile target="/usr/share/applications/wine/wine-oleview.desktop" permission="0644">menu/wine-oleview.desktop</AdditionalFile>
|
||||
<AdditionalFile target="/usr/share/applications/wine/wine-winemine.desktop" permission="0644">menu/wine-winemine.desktop</AdditionalFile>
|
||||
</AdditionalFiles>
|
||||
</Package>
|
||||
|
||||
<Package>
|
||||
<Name>wine-devel</Name>
|
||||
<Summary>Wine development environment</Summary>
|
||||
<RuntimeDependencies>
|
||||
<Dependency version="current">wine</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="executable">/usr/bin/function_grep.pl</Path>
|
||||
<Path fileType="executable">/usr/bin/widl</Path>
|
||||
<Path fileType="executable">/usr/bin/winebuild</Path>
|
||||
<Path fileType="executable">/usr/bin/winecpp</Path>
|
||||
<Path fileType="executable">/usr/bin/wineg++</Path>
|
||||
<Path fileType="executable">/usr/bin/winegcc</Path>
|
||||
<Path fileType="executable">/usr/bin/winemaker</Path>
|
||||
<Path fileType="executable">/usr/bin/wmc</Path>
|
||||
<Path fileType="executable">/usr/bin/wrc</Path>
|
||||
<Path fileType="header">/usr/include/wine</Path>
|
||||
<Path fileType="data">/usr/share/aclocal</Path>
|
||||
<Path fileType="man">/usr/share/man/man1/widl.1</Path>
|
||||
<Path fileType="man">/usr/share/man/man1/winebuild.1</Path>
|
||||
<Path fileType="man">/usr/share/man/man1/winecpp.1</Path>
|
||||
<Path fileType="man">/usr/share/man/man1/wineg++.1</Path>
|
||||
<Path fileType="man">/usr/share/man/man1/winegcc.1</Path>
|
||||
<Path fileType="man">/usr/share/man/man1/winemaker.1</Path>
|
||||
<Path fileType="man">/usr/share/man/man1/wmc.1</Path>
|
||||
<Path fileType="man">/usr/share/man/man1/wrc.1</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
|
||||
<Package>
|
||||
<Name>winetricks</Name>
|
||||
<Summary>winetricks is a helper script to download and install various redistributable runtime libraries needed to run some programs in Wine.</Summary>
|
||||
<Files>
|
||||
<Path fileType="executable">/usr/bin/winetricks</Path>
|
||||
<Path fileType="data">/usr/share/applications/winetricks.desktop</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<Package>
|
||||
<Name>wine-32bit</Name>
|
||||
<PartOf>emul32</PartOf>
|
||||
<Summary>32-bit shared libraries for wine</Summary>
|
||||
<BuildType>emul32</BuildType>
|
||||
<BuildDependencies>
|
||||
<Dependency>zlib-32bit</Dependency>
|
||||
<Dependency>glib2-32bit</Dependency>
|
||||
<Dependency>lcms2-32bit</Dependency>
|
||||
<Dependency>libSM-32bit</Dependency>
|
||||
<Dependency>p11-kit-32bit</Dependency>
|
||||
<Dependency>giflib-32bit</Dependency>
|
||||
<Dependency>libpng-32bit</Dependency>
|
||||
<Dependency>libv4l-32bit</Dependency>
|
||||
<Dependency>libX11-32bit</Dependency>
|
||||
<Dependency>mpg123-32bit</Dependency>
|
||||
<Dependency>openal-32bit</Dependency>
|
||||
<Dependency>libXext-32bit</Dependency>
|
||||
<Dependency>libxml2-32bit</Dependency>
|
||||
<Dependency>alsa-lib-32bit</Dependency>
|
||||
<Dependency>mesa-glu-32bit</Dependency>
|
||||
<Dependency>openldap-32bit</Dependency>
|
||||
<Dependency>ncurses-32bit</Dependency>
|
||||
<Dependency>libXrandr-32bit</Dependency>
|
||||
<Dependency>libXdamage-32bit</Dependency>
|
||||
<Dependency>libXxf86vm-32bit</Dependency>
|
||||
<Dependency>fontconfig-32bit</Dependency>
|
||||
<Dependency>libXcursor-32bit</Dependency>
|
||||
<Dependency>libXxf86dga-32bit</Dependency>
|
||||
<Dependency>gstreamer-32bit</Dependency>
|
||||
<Dependency>libXcomposite-32bit</Dependency>
|
||||
<Dependency>pulseaudio-libs-32bit</Dependency>
|
||||
<Dependency>gst-plugins-base-32bit</Dependency>
|
||||
</BuildDependencies>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>zlib-32bit</Dependency>
|
||||
<Dependency>lcms2-32bit</Dependency>
|
||||
<Dependency>libSM-32bit</Dependency>
|
||||
<Dependency>libX11-32bit</Dependency>
|
||||
<Dependency>mpg123-32bit</Dependency>
|
||||
<Dependency>openal-32bit</Dependency>
|
||||
<Dependency>libXext-32bit</Dependency>
|
||||
<Dependency>libxml2-32bit</Dependency>
|
||||
<Dependency>alsa-lib-32bit</Dependency>
|
||||
<Dependency>mesa-glu-32bit</Dependency>
|
||||
<Dependency>openldap-32bit</Dependency>
|
||||
<Dependency>gsm-32bit</Dependency>
|
||||
<Dependency>cups-32bit</Dependency>
|
||||
<Dependency>tiff-32bit</Dependency>
|
||||
<Dependency>libXi-32bit</Dependency>
|
||||
<Dependency>gnutls-32bit</Dependency>
|
||||
<Dependency>libpng-32bit</Dependency>
|
||||
<Dependency>ncurses-32bit</Dependency>
|
||||
<Dependency>openssl-32bit</Dependency>
|
||||
<Dependency>p11-kit-32bit</Dependency>
|
||||
<Dependency>giflib-32bit</Dependency>
|
||||
<Dependency>alsa-lib-32bit</Dependency>
|
||||
<Dependency>libXrandr-32bit</Dependency>
|
||||
<Dependency>gstreamer-32bit</Dependency>
|
||||
<Dependency>fontconfig-32bit</Dependency>
|
||||
<Dependency>libXcursor-32bit</Dependency>
|
||||
<Dependency>libXdamage-32bit</Dependency>
|
||||
<Dependency>libXxf86vm-32bit</Dependency>
|
||||
<Dependency>libXxf86dga-32bit</Dependency>
|
||||
<Dependency>libtool-ltdl-32bit</Dependency>
|
||||
<Dependency>libXcomposite-32bit</Dependency>
|
||||
<Dependency>libjpeg-turbo-32bit</Dependency>
|
||||
<Dependency>pulseaudio-libs-32bit</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="library">/usr/lib32/libwine.so*</Path>
|
||||
<Path fileType="library">/usr/lib32/wine</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="1">
|
||||
<Date>2016-07-02</Date>
|
||||
<Version>1.9.13</Version>
|
||||
<Comment>First release</Comment>
|
||||
<Name>Osman Erkan</Name>
|
||||
<Email>osman.erkan@pisilinux.org</Email>
|
||||
</Update>
|
||||
</History>
|
||||
</PISI>
|
||||
@@ -0,0 +1,20 @@
|
||||
<?xml version="1.0" ?>
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>wine</Name>
|
||||
<Summary xml:lang="tr">Wine bir "Emülator" değildir,Windows uygulamalarını çalıştırma imkanı sunar.</Summary>
|
||||
<Description xml:lang="tr">Wine X11 çalıştıran bir i386 (veya uyumluları) makinede Windows 3.*, Windows 95/98 ve Windows NT programlarını çalıştırmanıza imkân verir. Halâ alfa düzeyinde olduğundan her şey çalışmayabilir.</Description>
|
||||
<Summary xml:lang="de">Wine ist kein Emulator, mit dem Sie Microsoft Windows-Anwendungen laufen lässt</Summary>
|
||||
<Description xml:lang="de">Wine gibt ihnen die möglichkeit um Windows 3. *, Windows 95/98 und Windows NT-Programme auf einem i386 (oder kompatibel) System X11 zu laufen. Es ist immer noch Alpha-Level-Code, nicht erwarten, dass alles funktioniert.</Description>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>wine-devel</Name>
|
||||
<Summary xml:lang="tr">Wine geliştirme ortamı</Summary>
|
||||
</Package>
|
||||
|
||||
<Package>
|
||||
<Name>wine-32bit</Name>
|
||||
<Summary xml:lang="tr">wine için 32-bit paylaşımlı kitaplıklar</Summary>
|
||||
</Package>
|
||||
</PISI>
|
||||
+86001
-85734
File diff suppressed because it is too large
Load Diff
@@ -1 +1 @@
|
||||
bd42f9c64cd0a3e458da2202d25d9e725582cb52
|
||||
758608a18301c444ad58d082ae6b56917a3aa449
|
||||
Binary file not shown.
@@ -1 +1 @@
|
||||
4b1a0ead22cd5827af7e94da54337625b102fda6
|
||||
41414f6eb74a8876bd80603865635e5f5b4b149d
|
||||
Reference in New Issue
Block a user