Skip to content

Commit

Permalink
add dropbox client works for Pisi 2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
groni committed Apr 22, 2016
1 parent 6837319 commit 2d7a9d8
Show file tree
Hide file tree
Showing 6 changed files with 230 additions and 0 deletions.
25 changes: 25 additions & 0 deletions dropbox-client/actions.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
#!/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 pisitools
from pisi.actionsapi import get

WorkDir = "%s/.dropbox-dist" % get.ARCH()
NoStrip = "/opt/dropbox/library.zip"

def install():
#pisitools.dodir("/opt/dropbox")
pisitools.insinto("/opt/dropbox", "*")

# Arch removes this lib, Pardus libgcc package provides libstdc++.so.6
#pisitools.remove("/opt/dropbox/libstdc++.so.6")

pisitools.dodoc("VERSION")
pisitools.remove("/opt/dropbox/VERSION")

# you can remove these lines if u don't like monochromatic systemtry icons
# i'm going to try find a way to make this optional
pisitools.insinto("/opt/dropbox/icons/hicolor/16x16/status", "../../hede/*.png")
Loading

0 comments on commit 2d7a9d8

Please sign in to comment.