add qmplay2 a video and audio player which can play most formats and codecs
This commit is contained in:
@@ -0,0 +1,27 @@
|
||||
#!/usr/bin/python
|
||||
# -*- 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 qt5
|
||||
from pisi.actionsapi import shelltools
|
||||
from pisi.actionsapi import pisitools
|
||||
from pisi.actionsapi import get
|
||||
|
||||
|
||||
def setup():
|
||||
shelltools.system("qmake-qt5 QMPlay2.pro")
|
||||
|
||||
|
||||
def build():
|
||||
qt5.make()
|
||||
|
||||
def install():
|
||||
qt5.install()
|
||||
pisitools.insinto("/usr/bin/", "./app/bin/QMPlay2")
|
||||
pisitools.insinto("/usr/lib/", "./app/lib/libqmplay2.so")
|
||||
pisitools.insinto("/usr/share/qmplay2/modules/", "./app/share/qmplay2/modules/*")
|
||||
pisitools.insinto("/usr/share/qmplay2/lang/", "./lang/*")
|
||||
|
||||
pisitools.dodoc( "README.md", "COPYING", "ChangeLog*")
|
||||
@@ -0,0 +1,8 @@
|
||||
[Desktop Entry]
|
||||
Exec=QMPlay2
|
||||
Icon=QMPlay2
|
||||
Name=QMPlay2
|
||||
StartupNotify=false
|
||||
Type=Application
|
||||
Categories=Qt;AudioVideo;Player;Audio;Video;
|
||||
MimeType=video/mp4;video/mpeg;video/ogg;video/quicktime;video/x-msvideo;video/x-flv;application/x-shockwave-flash;application/vnd.rn-realmedia;video/vnd.rn-realvideo;video/3gpp;video/3gpp2;video/dv;video/webm;video/x-matroska;application/x-matroska;video/x-ms-asf;video/x-ms-wmv;video/x-ogm+ogg;video/x-theora+ogg;video/mp2t;audio/x-ape;audio/mp4;audio/AMR;audio/aac;audio/webm;audio/x-matroska;audio/ac3;audio/flac;audio/mp2;audio/ogg;audio/x-flac+ogg;audio/x-aiff;audio/x-wav;audio/x-vorbis+ogg;audio/x-tta;audio/x-wavpack;audio/x-musepack;audio/x-ms-wma;audio/x-ms-asx;audio/x-mod;audio/x-s3m;audio/x-stm;audio/x-xi;audio/x-xm;audio/x-it;audio/mpeg;audio/x-mpegurl;audio/x-scpls;audio/prs.sid;audio/x-j2b;audio/x-sfx;audio/x-umx;audio/x-gme;video/x-bink;
|
||||
Binary file not shown.
|
After Width: | Height: | Size: 10 KiB |
@@ -0,0 +1,10 @@
|
||||
[Desktop Entry]
|
||||
Exec=QMPlay2 --enqueue
|
||||
Icon=QMPlay2
|
||||
Name=Enqueue in QMPlay2
|
||||
Name[pl]=Kolejkuj w QMPlay2
|
||||
StartupNotify=false
|
||||
Type=Application
|
||||
Categories=Qt;AudioVideo;Player;Audio;Video;
|
||||
MimeType=video/mp4;video/mpeg;video/ogg;video/quicktime;video/x-msvideo;video/x-flv;application/x-shockwave-flash;application/vnd.rn-realmedia;video/vnd.rn-realvideo;video/3gpp;video/3gpp2;video/dv;video/webm;video/x-matroska;application/x-matroska;video/x-ms-asf;video/x-ms-wmv;video/x-ogm+ogg;video/x-theora+ogg;video/mp2t;audio/x-ape;audio/mp4;audio/AMR;audio/aac;audio/webm;audio/x-matroska;audio/ac3;audio/flac;audio/mp2;audio/ogg;audio/x-flac+ogg;audio/x-aiff;audio/x-wav;audio/x-vorbis+ogg;audio/x-tta;audio/x-wavpack;audio/x-musepack;audio/x-ms-wma;audio/x-ms-asx;audio/x-mod;audio/x-s3m;audio/x-stm;audio/x-xi;audio/x-xm;audio/x-it;audio/mpeg;audio/x-mpegurl;audio/x-scpls;audio/prs.sid;audio/x-j2b;audio/x-sfx;audio/x-umx;audio/x-gme;video/x-bink;
|
||||
NoDisplay=true
|
||||
@@ -0,0 +1,95 @@
|
||||
<?xml version="1.0" ?>
|
||||
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>qmplay2</Name>
|
||||
<Homepage>http://zaps166.sourceforge.net/</Homepage>
|
||||
<Packager>
|
||||
<Name>PisiLinux Community</Name>
|
||||
<Email>admins@pisilinux.org</Email>
|
||||
</Packager>
|
||||
<License>LGPL</License>
|
||||
<IsA>app:gui</IsA>
|
||||
<Summary>QMPlay2 is a video and audio player which can play most formats and codecs</Summary>
|
||||
<Description>It can play all formats supported by FFmpeg, libmodplug (including J2B and SFX). It also supports Audio CD, raw files, Rayman 2 music and chiptunes. It contains YouTube and Prostopleer browser.</Description>
|
||||
<Archive sha1sum="c125f129f4031fc842a881c4b5b71488447cd2c6" type="tarxz">https://sourceforge.net/projects/zaps166/files/QMPlay2/QMPlay2-src-16.06.01.tar.xz</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>qt5-base-devel</Dependency>
|
||||
<Dependency>qt5-qdbusviewer</Dependency>
|
||||
<Dependency>qt5-x11extras-devel</Dependency>
|
||||
<Dependency>qt5-assistant-devel</Dependency>
|
||||
<Dependency>qt5-designer-devel</Dependency>
|
||||
<Dependency>qt5-linguist</Dependency>
|
||||
<Dependency>pkgconfig</Dependency>
|
||||
<Dependency>cmake</Dependency>
|
||||
<Dependency>ffmpeg-devel</Dependency>
|
||||
<Dependency>libva-devel</Dependency>
|
||||
<Dependency>libvdpau-devel</Dependency>
|
||||
<Dependency>taglib-devel</Dependency>
|
||||
<Dependency>portaudio-devel</Dependency>
|
||||
<Dependency>openal-devel</Dependency>
|
||||
<Dependency>libcdio-devel</Dependency>
|
||||
<Dependency>libcddb-devel</Dependency>
|
||||
<Dependency>libass-devel</Dependency>
|
||||
<Dependency>libX11-devel</Dependency>
|
||||
<Dependency>gst-libav-next</Dependency>
|
||||
<Dependency>pulseaudio-libs-devel</Dependency>
|
||||
<Dependency>libXv-devel</Dependency>
|
||||
<Dependency>mesa-devel</Dependency>
|
||||
<Dependency>mesa-glu-devel</Dependency>
|
||||
<Dependency>alsa-lib-devel</Dependency>
|
||||
<Dependency>libva-devel</Dependency>
|
||||
</BuildDependencies>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>qmplay2</Name>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>qt5-base</Dependency>
|
||||
<Dependency>qt5-x11extras</Dependency>
|
||||
<Dependency>alsa-lib</Dependency>
|
||||
<Dependency>mesa</Dependency>
|
||||
<Dependency>libXv</Dependency>
|
||||
<Dependency>libva</Dependency>
|
||||
<Dependency>ffmpeg</Dependency>
|
||||
<Dependency>libX11</Dependency>
|
||||
<Dependency>libcdio</Dependency>
|
||||
<Dependency>libass</Dependency>
|
||||
<Dependency>libgcc</Dependency>
|
||||
<Dependency>taglib</Dependency>
|
||||
<Dependency>libcddb</Dependency>
|
||||
<Dependency>libvdpau</Dependency>
|
||||
<Dependency>pulseaudio-libs</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="executable">/usr/bin</Path>
|
||||
<Path fileType="data">/usr/share/qmplay2</Path>
|
||||
<Path fileType="icon">/usr/share/icons</Path>
|
||||
<Path fileType="application">/usr/share/applications</Path>
|
||||
<Path fileType="library">/usr/lib</Path>
|
||||
<Path fileType="doc">/usr/share/doc</Path>
|
||||
</Files>
|
||||
<AdditionalFiles>
|
||||
<AdditionalFile owner="root" permission="0644" target="/usr/share/icons/QMPlay2.png">QMPlay2.png</AdditionalFile>
|
||||
<AdditionalFile owner="root" permission="0644" target="/usr/share/applications/QMPlay2.desktop">QMPlay2.desktop</AdditionalFile>
|
||||
<AdditionalFile owner="root" permission="0644" target="/usr/share/applications/QMPlay2_enqueue.desktop">QMPlay2_enqueue.desktop</AdditionalFile>
|
||||
</AdditionalFiles>
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="2">
|
||||
<Date>2016-06-19</Date>
|
||||
<Version>16.06.01</Version>
|
||||
<Comment>Version bump.</Comment>
|
||||
<Name>Stefan Gronewold(groni)</Name>
|
||||
<Email>groni@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="1">
|
||||
<Date>2016-05-12</Date>
|
||||
<Version>16.05.06</Version>
|
||||
<Comment>First release</Comment>
|
||||
<Name>Stefan Gronewold</Name>
|
||||
<Email>groni@pisilinux.org</Email>
|
||||
</Update>
|
||||
</History>
|
||||
</PISI>
|
||||
@@ -72120,6 +72120,99 @@
|
||||
</Update>
|
||||
</History>
|
||||
</SpecFile>
|
||||
<SpecFile>
|
||||
<Source>
|
||||
<Name>qmplay2</Name>
|
||||
<Homepage>http://zaps166.sourceforge.net/</Homepage>
|
||||
<Packager>
|
||||
<Name>PisiLinux Community</Name>
|
||||
<Email>admins@pisilinux.org</Email>
|
||||
</Packager>
|
||||
<License>LGPL</License>
|
||||
<IsA>app:gui</IsA>
|
||||
<PartOf>multimedia.video</PartOf>
|
||||
<Summary xml:lang="en">QMPlay2 is a video and audio player which can play most formats and codecs</Summary>
|
||||
<Description xml:lang="en">It can play all formats supported by FFmpeg, libmodplug (including J2B and SFX). It also supports Audio CD, raw files, Rayman 2 music and chiptunes. It contains YouTube and Prostopleer browser.</Description>
|
||||
<Archive type="tarxz" sha1sum="c125f129f4031fc842a881c4b5b71488447cd2c6">https://sourceforge.net/projects/zaps166/files/QMPlay2/QMPlay2-src-16.06.01.tar.xz</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>qt5-base-devel</Dependency>
|
||||
<Dependency>qt5-qdbusviewer</Dependency>
|
||||
<Dependency>qt5-x11extras-devel</Dependency>
|
||||
<Dependency>qt5-assistant-devel</Dependency>
|
||||
<Dependency>qt5-designer-devel</Dependency>
|
||||
<Dependency>qt5-linguist</Dependency>
|
||||
<Dependency>pkgconfig</Dependency>
|
||||
<Dependency>cmake</Dependency>
|
||||
<Dependency>ffmpeg-devel</Dependency>
|
||||
<Dependency>libva-devel</Dependency>
|
||||
<Dependency>libvdpau-devel</Dependency>
|
||||
<Dependency>taglib-devel</Dependency>
|
||||
<Dependency>portaudio-devel</Dependency>
|
||||
<Dependency>openal-devel</Dependency>
|
||||
<Dependency>libcdio-devel</Dependency>
|
||||
<Dependency>libcddb-devel</Dependency>
|
||||
<Dependency>libass-devel</Dependency>
|
||||
<Dependency>libX11-devel</Dependency>
|
||||
<Dependency>gst-libav-next</Dependency>
|
||||
<Dependency>pulseaudio-libs-devel</Dependency>
|
||||
<Dependency>libXv-devel</Dependency>
|
||||
<Dependency>mesa-devel</Dependency>
|
||||
<Dependency>mesa-glu-devel</Dependency>
|
||||
<Dependency>alsa-lib-devel</Dependency>
|
||||
<Dependency>libva-devel</Dependency>
|
||||
</BuildDependencies>
|
||||
<SourceURI>multimedia/video/qmplay2/pspec.xml</SourceURI>
|
||||
</Source>
|
||||
<Package>
|
||||
<Name>qmplay2</Name>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>qt5-base</Dependency>
|
||||
<Dependency>qt5-x11extras</Dependency>
|
||||
<Dependency>alsa-lib</Dependency>
|
||||
<Dependency>mesa</Dependency>
|
||||
<Dependency>libXv</Dependency>
|
||||
<Dependency>libva</Dependency>
|
||||
<Dependency>ffmpeg</Dependency>
|
||||
<Dependency>libX11</Dependency>
|
||||
<Dependency>libcdio</Dependency>
|
||||
<Dependency>libass</Dependency>
|
||||
<Dependency>libgcc</Dependency>
|
||||
<Dependency>taglib</Dependency>
|
||||
<Dependency>libcddb</Dependency>
|
||||
<Dependency>libvdpau</Dependency>
|
||||
<Dependency>pulseaudio-libs</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="executable">/usr/bin</Path>
|
||||
<Path fileType="data">/usr/share/qmplay2</Path>
|
||||
<Path fileType="icon">/usr/share/icons</Path>
|
||||
<Path fileType="application">/usr/share/applications</Path>
|
||||
<Path fileType="library">/usr/lib</Path>
|
||||
<Path fileType="doc">/usr/share/doc</Path>
|
||||
</Files>
|
||||
<AdditionalFiles>
|
||||
<AdditionalFile target="/usr/share/icons/QMPlay2.png" permission="0644" owner="root">QMPlay2.png</AdditionalFile>
|
||||
<AdditionalFile target="/usr/share/applications/QMPlay2.desktop" permission="0644" owner="root">QMPlay2.desktop</AdditionalFile>
|
||||
<AdditionalFile target="/usr/share/applications/QMPlay2_enqueue.desktop" permission="0644" owner="root">QMPlay2_enqueue.desktop</AdditionalFile>
|
||||
</AdditionalFiles>
|
||||
</Package>
|
||||
<History>
|
||||
<Update release="2">
|
||||
<Date>2016-06-19</Date>
|
||||
<Version>16.06.01</Version>
|
||||
<Comment>Version bump.</Comment>
|
||||
<Name>Stefan Gronewold(groni)</Name>
|
||||
<Email>groni@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="1">
|
||||
<Date>2016-05-12</Date>
|
||||
<Version>16.05.06</Version>
|
||||
<Comment>First release</Comment>
|
||||
<Name>Stefan Gronewold</Name>
|
||||
<Email>groni@pisilinux.org</Email>
|
||||
</Update>
|
||||
</History>
|
||||
</SpecFile>
|
||||
<SpecFile>
|
||||
<Source>
|
||||
<Name>gst-plugins-ugly-next</Name>
|
||||
|
||||
@@ -1 +1 @@
|
||||
96f368ea8a31a6e1fe8fd6e59523229605db0d91
|
||||
2b7ed070f7d50d6049bd3759a2a0af0c6ca60f73
|
||||
Binary file not shown.
@@ -1 +1 @@
|
||||
11018b7d3d111e6952c1e41addc655e0a067fa40
|
||||
2b0fe315df39c1f785e042931143cae4ed13541d
|
||||
Reference in New Issue
Block a user