add new packages ktageditor and rkrename
This commit is contained in:
@@ -0,0 +1,34 @@
|
|||||||
|
#!/usr/bin/python
|
||||||
|
# -*- coding: utf-8 -*-
|
||||||
|
# Licensed under the GNU General Public License, version 3.
|
||||||
|
# See the file http://www.gnu.org/copyleft/gpl.txt
|
||||||
|
|
||||||
|
from pisi.actionsapi import qt5
|
||||||
|
#from pisi.actionsapi import pisitools
|
||||||
|
|
||||||
|
# if pisi can't find source directory, see /var/pisi/ktageditor/work/ and:
|
||||||
|
# WorkDir="ktageditor-"+ get.srcVERSION() +"/sub_project_dir/"
|
||||||
|
|
||||||
|
def setup():
|
||||||
|
qt5.configure()
|
||||||
|
|
||||||
|
def build():
|
||||||
|
qt5.make()
|
||||||
|
|
||||||
|
def install():
|
||||||
|
qt5.install()
|
||||||
|
|
||||||
|
# Take a look at the source folder for these file as documentation.
|
||||||
|
# pisitools.dodoc("AUTHORS", "BUGS", "ChangeLog", "COPYING", "README")
|
||||||
|
|
||||||
|
# If there is no install rule for a runnable binary, you can
|
||||||
|
# install it to binary directory.
|
||||||
|
# pisitools.dobin("ktageditor")
|
||||||
|
|
||||||
|
# You can use these as variables, they will replace GUI values before build.
|
||||||
|
# Package Name : ktageditor
|
||||||
|
# Version : 0.2.0
|
||||||
|
# Summary : KTag Editor is an Audio tag editor developed in Qt5 framework.
|
||||||
|
|
||||||
|
# For more information, you can look at the Actions API
|
||||||
|
# from the Help menu and toolbar.
|
||||||
@@ -0,0 +1,46 @@
|
|||||||
|
<?xml version="1.0" ?>
|
||||||
|
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
||||||
|
<PISI>
|
||||||
|
<Source>
|
||||||
|
<Name>ktageditor</Name>
|
||||||
|
<Homepage>https://sourceforge.net/projects/ktageditor/</Homepage>
|
||||||
|
<Packager>
|
||||||
|
<Name>Stefan Gronewold</Name>
|
||||||
|
<Email>groni@pisilinux.org</Email>
|
||||||
|
</Packager>
|
||||||
|
<License>LGPL</License>
|
||||||
|
<Summary>KTag Editor is an Audio tag editor developed in Qt5 framework.</Summary>
|
||||||
|
<Description>KTag Editor is a free open source ID3v tag editor developed in Qt5 framework. Supported files are mp3, wav, ogg, wma, flac, asf</Description>
|
||||||
|
<BuildDependencies>
|
||||||
|
<Dependency>qt5-base-devel</Dependency>
|
||||||
|
<Dependency>qt5-phonon-devel</Dependency>
|
||||||
|
<Dependency>taglib-devel</Dependency>
|
||||||
|
<Dependency>qt5-phonon-backend-gstreamer</Dependency>
|
||||||
|
</BuildDependencies>
|
||||||
|
<Archive type="zip" sha1sum="00057d8e20465381d12990d22109bcd8943838b3">https://sourceforge.net/projects/ktageditor/files/Source/0.2.0/ktageditor.zip</Archive>
|
||||||
|
</Source>
|
||||||
|
<Package>
|
||||||
|
<Name>ktageditor</Name>
|
||||||
|
<Summary>KTag Editor is an Audio tag editor developed in Qt5 framework.</Summary>
|
||||||
|
<RuntimeDependencies>
|
||||||
|
<Dependency>qt5-base</Dependency>
|
||||||
|
<Dependency>qt5-phonon</Dependency>
|
||||||
|
<Dependency>qt5-phonon-backend-gstreamer</Dependency>
|
||||||
|
<Dependency>libgcc</Dependency>
|
||||||
|
<Dependency>taglib</Dependency>
|
||||||
|
</RuntimeDependencies>
|
||||||
|
<Files>
|
||||||
|
<Path fileType="executable">/usr/bin</Path>
|
||||||
|
<Path fileType="data">/usr/share</Path>
|
||||||
|
</Files>
|
||||||
|
</Package>
|
||||||
|
<History>
|
||||||
|
<Update release="1">
|
||||||
|
<Date>2017-01-21</Date>
|
||||||
|
<Version>0.2.0</Version>
|
||||||
|
<Comment>First Release</Comment>
|
||||||
|
<Name>Stefan Gronewold</Name>
|
||||||
|
<Email>groni@pisilinux.org</Email>
|
||||||
|
</Update>
|
||||||
|
</History>
|
||||||
|
</PISI>
|
||||||
+112966
-112861
File diff suppressed because it is too large
Load Diff
@@ -1 +1 @@
|
|||||||
11056c4136a0d379a5fbe775191fae1a918dc612
|
1a9e5ada941081aaa2f52b7e8f77dc1d3213744b
|
||||||
Binary file not shown.
@@ -1 +1 @@
|
|||||||
3a420d3551af221a797309e6115c7d9d58bfbf95
|
686782b56f11b2ce0b5ae93e6984c4e61dd1adbf
|
||||||
@@ -0,0 +1,34 @@
|
|||||||
|
#!/usr/bin/python
|
||||||
|
# -*- coding: utf-8 -*-
|
||||||
|
# Licensed under the GNU General Public License, version 3.
|
||||||
|
# See the file http://www.gnu.org/copyleft/gpl.txt
|
||||||
|
|
||||||
|
from pisi.actionsapi import qt5
|
||||||
|
#from pisi.actionsapi import pisitools
|
||||||
|
|
||||||
|
# if pisi can't find source directory, see /var/pisi/rkrenamer/work/ and:
|
||||||
|
# WorkDir="rkrenamer-"+ get.srcVERSION() +"/sub_project_dir/"
|
||||||
|
|
||||||
|
def setup():
|
||||||
|
qt5.configure()
|
||||||
|
|
||||||
|
def build():
|
||||||
|
qt5.make()
|
||||||
|
|
||||||
|
def install():
|
||||||
|
qt5.install()
|
||||||
|
|
||||||
|
# Take a look at the source folder for these file as documentation.
|
||||||
|
# pisitools.dodoc("AUTHORS", "BUGS", "ChangeLog", "COPYING", "README")
|
||||||
|
|
||||||
|
# If there is no install rule for a runnable binary, you can
|
||||||
|
# install it to binary directory.
|
||||||
|
# pisitools.dobin("rkrenamer")
|
||||||
|
|
||||||
|
# You can use these as variables, they will replace GUI values before build.
|
||||||
|
# Package Name : rkrenamer
|
||||||
|
# Version : 0.4.0
|
||||||
|
# Summary : KTag Editor is an Audio tag editor developed in Qt5 framework.
|
||||||
|
|
||||||
|
# For more information, you can look at the Actions API
|
||||||
|
# from the Help menu and toolbar.
|
||||||
@@ -0,0 +1,40 @@
|
|||||||
|
<?xml version="1.0" ?>
|
||||||
|
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
||||||
|
<PISI>
|
||||||
|
<Source>
|
||||||
|
<Name>rkrenamer</Name>
|
||||||
|
<Homepage>https://sourceforge.net/projects/ktageditor/</Homepage>
|
||||||
|
<Packager>
|
||||||
|
<Name>Stefan Gronewold</Name>
|
||||||
|
<Email>groni@pisilinux.org</Email>
|
||||||
|
</Packager>
|
||||||
|
<License>LGPL</License>
|
||||||
|
<Summary>KTag Editor is an Audio tag editor developed in Qt5 framework.</Summary>
|
||||||
|
<Description>RKrenamer is application for renaming a large number of files. You can rename a large number of files with one click. Insert text in file name, replace, delete or even change the case of name, or serialize the files in folder.</Description>
|
||||||
|
<BuildDependencies>
|
||||||
|
<Dependency>qt5-base-devel</Dependency>
|
||||||
|
</BuildDependencies>
|
||||||
|
<Archive type="zip" sha1sum="7af88cdc9d1f017531e90f8a3f677f6238ac0176">https://sourceforge.net/projects/rkrenamer/files/Source/0.4.0/rkrenamer.zip/download</Archive>
|
||||||
|
</Source>
|
||||||
|
<Package>
|
||||||
|
<Name>rkrenamer</Name>
|
||||||
|
<Summary>Application for renaming large number of files</Summary>
|
||||||
|
<RuntimeDependencies>
|
||||||
|
<Dependency>libgcc</Dependency>
|
||||||
|
<Dependency>qt5-base</Dependency>
|
||||||
|
</RuntimeDependencies>
|
||||||
|
<Files>
|
||||||
|
<Path fileType="executable">/usr/bin</Path>
|
||||||
|
<Path fileType="data">/usr/share</Path>
|
||||||
|
</Files>
|
||||||
|
</Package>
|
||||||
|
<History>
|
||||||
|
<Update release="1">
|
||||||
|
<Date>2017-01-21</Date>
|
||||||
|
<Version>0.4.0</Version>
|
||||||
|
<Comment>First Release</Comment>
|
||||||
|
<Name>Stefan Gronewold</Name>
|
||||||
|
<Email>groni@pisilinux.org</Email>
|
||||||
|
</Update>
|
||||||
|
</History>
|
||||||
|
</PISI>
|
||||||
Reference in New Issue
Block a user