kfoldersync folder synchronization and backup tool for KDE

This commit is contained in:
groni
2015-11-05 21:23:05 +01:00
parent b0e4d86456
commit 794f681c9e
2 changed files with 92 additions and 0 deletions
+34
View File
@@ -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 kde5
from pisi.actionsapi import pisitools
# if pisi can't find source directory, see /var/pisi/kfoldersync/work/ and:
# WorkDir="kfoldersync-"+ get.srcVERSION() +"/sub_project_dir/"
def setup():
kde5.configure()
def build():
kde5.make()
def install():
kde5.install()
# Take a look at the source folder for these file as documentation.
pisitools.dodoc("COPYING", "README")
# If there is no install rule for a runnable binary, you can
# install it to binary directory.
# pisitools.dobin("kfoldersync")
# You can use these as variables, they will replace GUI values before build.
# Package Name : kfoldersync
# Version : 3.0.0
# Summary : Folder synchronization and backup tool for KDE
# For more information, you can look at the Actions API
# from the Help menu and toolbar.