forked from pisilinux/contrib
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add dropbox client works for Pisi 2.0
- Loading branch information
Showing
6 changed files
with
230 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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") |
Oops, something went wrong.