clipgrab: new package
This commit is contained in:
@@ -0,0 +1,19 @@
|
|||||||
|
#!/usr/bin/python
|
||||||
|
# -*- coding: utf-8 -*-
|
||||||
|
|
||||||
|
from pisi.actionsapi import qt5
|
||||||
|
from pisi.actionsapi import pisitools
|
||||||
|
from pisi.actionsapi import shelltools
|
||||||
|
|
||||||
|
def setup():
|
||||||
|
pisitools.dosed("resources.qrc", ".*logo-.*$")
|
||||||
|
qt5.configure("clipgrab.pro")
|
||||||
|
|
||||||
|
def build():
|
||||||
|
qt5.make()
|
||||||
|
shelltools.chmod("icon.png", 0644)
|
||||||
|
|
||||||
|
def install():
|
||||||
|
pisitools.dobin("clipgrab")
|
||||||
|
pisitools.insinto("/usr/share/pixmaps/", "icon.png", "clipgrab.png")
|
||||||
|
pisitools.dodoc("COPYING", "license.odt")
|
||||||
@@ -0,0 +1,14 @@
|
|||||||
|
[Desktop Entry]
|
||||||
|
Type=Application
|
||||||
|
Encoding=UTF-8
|
||||||
|
Name=ClipGrab
|
||||||
|
GenericName=Video Downloader
|
||||||
|
GenericName[de]=Video-Downloader
|
||||||
|
GenericName[nl]=Video Downloader
|
||||||
|
Comment=Download and convert online videos
|
||||||
|
Comment[de]=Videos herunterladen und konvertieren
|
||||||
|
Commetn[nl]=Download en converteren van video's
|
||||||
|
Icon=/usr/share/pixmaps/clipgrab.png
|
||||||
|
Exec=clipgrab
|
||||||
|
Terminal=false
|
||||||
|
Categories=AudioVideo;Recorder;
|
||||||
@@ -0,0 +1,54 @@
|
|||||||
|
<?xml version="1.0" ?>
|
||||||
|
<!DOCTYPE PISI SYSTEM "https://pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
||||||
|
<PISI>
|
||||||
|
<Source>
|
||||||
|
<Name>clipgrab</Name>
|
||||||
|
<Homepage>https://clipgrab.org/</Homepage>
|
||||||
|
<Packager>
|
||||||
|
<Name>PisiLinux Community</Name>
|
||||||
|
<Email>admins@pisilinux.org</Email>
|
||||||
|
</Packager>
|
||||||
|
<Summary>A video downloader</Summary>
|
||||||
|
<Description>A program which downloads and converts online videos from YouTube, Vimeo, DailyMotion, MyVideo and many other platforms.</Description>
|
||||||
|
<License>GPLv3</License>
|
||||||
|
<Icon>clipgrab</Icon>
|
||||||
|
<IsA>app:gui</IsA>
|
||||||
|
<PartOf>network.download</PartOf>
|
||||||
|
<Archive sha1sum="6f826783b7429a1eea4defdacd385ea39cc9d9c5" type="targz">https://download.clipgrab.org/clipgrab-3.9.7.tar.gz</Archive>
|
||||||
|
<BuildDependencies>
|
||||||
|
<Dependency>ffmpeg-devel</Dependency>
|
||||||
|
<Dependency>qt5-base-devel</Dependency>
|
||||||
|
<Dependency>qt5-webengine-devel</Dependency>
|
||||||
|
</BuildDependencies>
|
||||||
|
</Source>
|
||||||
|
|
||||||
|
<Package>
|
||||||
|
<Name>clipgrab</Name>
|
||||||
|
<RuntimeDependencies>
|
||||||
|
<Dependency>ffmpeg</Dependency>
|
||||||
|
<Dependency>libgcc</Dependency>
|
||||||
|
<Dependency>yt-dlp</Dependency>
|
||||||
|
<Dependency>qt5-base</Dependency>
|
||||||
|
<Dependency>qt5-webengine</Dependency>
|
||||||
|
</RuntimeDependencies>
|
||||||
|
<Files>
|
||||||
|
<Path fileType="executable">/usr/bin</Path>
|
||||||
|
<Path fileType="data">/usr/share/pixmaps</Path>
|
||||||
|
<Path fileType="data">/usr/share/applications</Path>
|
||||||
|
<Path fileType="doc">/usr/share/doc/clipgrab</Path>
|
||||||
|
</Files>
|
||||||
|
<AdditionalFiles>
|
||||||
|
<AdditionalFile target="/usr/share/applications/clipgrab.desktop" permission="0644" owner="root">clipgrab.desktop</AdditionalFile>
|
||||||
|
</AdditionalFiles>
|
||||||
|
</Package>
|
||||||
|
|
||||||
|
<History>
|
||||||
|
<Update release="1">
|
||||||
|
<Date>2022-03-29</Date>
|
||||||
|
<Version>3.9.7</Version>
|
||||||
|
<Comment>First release</Comment>
|
||||||
|
<Name>Kamil Atlı</Name>
|
||||||
|
<Email>suvari@pisilinux.org</Email>
|
||||||
|
</Update>
|
||||||
|
</History>
|
||||||
|
</PISI>
|
||||||
@@ -0,0 +1,8 @@
|
|||||||
|
<?xml version='1.0'?>
|
||||||
|
<PISI>
|
||||||
|
<Source>
|
||||||
|
<Name>clipgrab</Name>
|
||||||
|
<Summary xml:lang="tr">Bir video indirici.</Summary>
|
||||||
|
<Description xml:lang="tr">YouTube, Vimeo, DailyMotion, MyVideo ve diğer bazı platformlardan video indirip dönüştürebilen bir programdır. </Description>
|
||||||
|
</Source>
|
||||||
|
</PISI>
|
||||||
+511
-133
File diff suppressed because it is too large
Load Diff
@@ -1 +1 @@
|
|||||||
86a771cb40c808e2f2f1f37bfa84db4fec59967a
|
1f913eb6585645ac3a8679eea7d797f5000087bc
|
||||||
Binary file not shown.
@@ -1 +1 @@
|
|||||||
9e473d5dd97037d6c311a6155123bcf2f671bf50
|
6ee44815a2782cefd629cd752ffaabc53cfcf966
|
||||||
@@ -0,0 +1,16 @@
|
|||||||
|
#!/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 pythonmodules
|
||||||
|
from pisi.actionsapi import pisitools
|
||||||
|
from pisi.actionsapi import get
|
||||||
|
|
||||||
|
def build():
|
||||||
|
pythonmodules.compile(pyVer="3")
|
||||||
|
|
||||||
|
def install():
|
||||||
|
pythonmodules.install(pyVer="3")
|
||||||
|
pisitools.dodoc("LICENSE")
|
||||||
@@ -0,0 +1,64 @@
|
|||||||
|
<?xml version="1.0" ?>
|
||||||
|
<!DOCTYPE PISI SYSTEM "https://pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
||||||
|
<PISI>
|
||||||
|
<Source>
|
||||||
|
<Name>yt-dlp</Name>
|
||||||
|
<Homepage>https://github.com/yt-dlp/yt-dlp</Homepage>
|
||||||
|
<Packager>
|
||||||
|
<Name>Kamil Atlı</Name>
|
||||||
|
<Email>suvari@pisilinux.org</Email>
|
||||||
|
</Packager>
|
||||||
|
<PartOf>programming.language.python3</PartOf>
|
||||||
|
<License>as-is</License>
|
||||||
|
<IsA>library</IsA>
|
||||||
|
<Summary>A youtube-dl fork with additional features and fixes</Summary>
|
||||||
|
<Description>A youtube-dl fork with additional features and fixes</Description>
|
||||||
|
<Archive sha1sum="417b975fd4e9f0b69385b4c754a3db94aafaddc0" type="targz">https://github.com/yt-dlp/yt-dlp/archive/refs/tags/2022.03.08.1.tar.gz</Archive>
|
||||||
|
<BuildDependencies>>
|
||||||
|
<Dependency>aria2-devel</Dependency>
|
||||||
|
<Dependency>ffmpeg-devel</Dependency>
|
||||||
|
<Dependency>python3-wheel</Dependency>
|
||||||
|
<Dependency>python3-devel</Dependency>
|
||||||
|
<Dependency>rtmpdump-devel</Dependency>
|
||||||
|
<Dependency>python3-mutagen</Dependency>
|
||||||
|
<Dependency>python3-setuptools</Dependency>
|
||||||
|
<Dependency>python3-websockets</Dependency>
|
||||||
|
<Dependency>python3-pycryptodomex</Dependency>
|
||||||
|
</BuildDependencies>
|
||||||
|
</Source>
|
||||||
|
|
||||||
|
<Package>
|
||||||
|
<Name>yt-dlp</Name>
|
||||||
|
<Summary>A youtube-dl fork with additional features and fixes</Summary>
|
||||||
|
<RuntimeDependencies>
|
||||||
|
<Dependency>aria2</Dependency>
|
||||||
|
<Dependency>ffmpeg</Dependency>
|
||||||
|
<Dependency>python3</Dependency>
|
||||||
|
<Dependency>rtmpdump</Dependency>
|
||||||
|
<Dependency>python3-wheel</Dependency>
|
||||||
|
<Dependency>python3-mutagen</Dependency>
|
||||||
|
<Dependency>python3-websockets</Dependency>
|
||||||
|
<Dependency>python3-pycryptodomex</Dependency>
|
||||||
|
</RuntimeDependencies>
|
||||||
|
<Files>
|
||||||
|
<Path fileType="executable">/usr/bin</Path>
|
||||||
|
<Path fileType="man">/usr/share/man/man1</Path>
|
||||||
|
<Path fileType="data">/usr/share/bash-completion/completions</Path>
|
||||||
|
<Path fileType="data">/usr/share/fish/vendor_completions.d</Path>
|
||||||
|
<Path fileType="data">/usr/share/zsh/site-functions</Path>
|
||||||
|
<Path fileType="doc">/usr/share/doc/yt_dlp</Path>
|
||||||
|
<Path fileType="doc">/usr/share/doc/yt-dlp</Path>
|
||||||
|
<Path fileType="library">/usr/lib/python3.9/site-packages/yt_dlp</Path>
|
||||||
|
</Files>
|
||||||
|
</Package>
|
||||||
|
|
||||||
|
<History>
|
||||||
|
<Update release="1">
|
||||||
|
<Date>2022-03-29</Date>
|
||||||
|
<Version>2022.03.08.1</Version>
|
||||||
|
<Comment>First release</Comment>
|
||||||
|
<Name>Kamil Atlı</Name>
|
||||||
|
<Email>suvari@pisilinux.org</Email>
|
||||||
|
</Update>
|
||||||
|
</History>
|
||||||
|
</PISI>
|
||||||
@@ -0,0 +1,8 @@
|
|||||||
|
<?xml version="1.0" ?>
|
||||||
|
<PISI>
|
||||||
|
<Source>
|
||||||
|
<Name>yt-dlp</Name>
|
||||||
|
<Summary xml:lang="tr">Ek özelliklere ve düzeltmelere sahip bir youtube-dl çatalı</Summary>
|
||||||
|
<Description xml:lang="tr">Ek özelliklere ve düzeltmelere sahip bir youtube-dl çatalı</Description>
|
||||||
|
</Source>
|
||||||
|
</PISI>
|
||||||
Reference in New Issue
Block a user