Skip to content

HTTPS clone URL

Subversion checkout URL

You can clone with
or
.
Download ZIP
Browse files

Initial commit: first version of PKGBUILD

  • Loading branch information...
commit e5d5e93a5e4935c6be24d85bf875554a9f66d5f7 0 parents
@kleinph authored
Showing with 56 additions and 0 deletions.
  1. +21 −0 LICENSE
  2. +35 −0 PKGBUILD
21 LICENSE
@@ -0,0 +1,21 @@
+The MIT License
+
+Copyright (c) 2013 Petter Rasmussen
+
+Permission is hereby granted, free of charge, to any person obtaining a copy
+of this software and associated documentation files (the "Software"), to deal
+in the Software without restriction, including without limitation the rights
+to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+copies of the Software, and to permit persons to whom the Software is
+furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in
+all copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+THE SOFTWARE.
35 PKGBUILD
@@ -0,0 +1,35 @@
+# Maintainer: Philipp Klein <philipptheklein@gmail.com>
+pkgname=gdrive
+pkgver=1.6.1
+pkgrel=1
+pkgdesc="Command line utility for uploading and downloading single files to your Google Drive"
+arch=('i686' 'x86_64')
+url="https://github.com/prasmussen/gdrive"
+license=('MIT')
+groups=()
+depends=()
+makedepends=()
+optdepends=()
+provides=()
+conflicts=()
+replaces=()
+backup=()
+options=()
+install=
+changelog=
+source=("LICENSE")
+source_i686=("gdrive-linux-i686::https://drive.google.com/uc?id=0B3X9GlR6EmbnZ1JESlBlX2s4XzQ")
+source_x86_64=("gdrive-linux-x86_64::https://drive.google.com/uc?id=0B3X9GlR6EmbnSWFxaExoUEk1NFk")
+noextract=()
+sha256sums=('141e360fe52a5f5a873ac9c49a08d2f50bce82212a8c8d6196a91b79820dd717')
+sha256sums_i686=('ae89a67e35a3426c6ad969c61973b06202a3b23134269bce577c824ea2ad2ccc')
+sha256sums_x86_64=('52f7a20707e63868b7d1d8a458c1942f876d472f414b982d0f5164458d20bc2a')
+
+package() {
+ install -dm755 "$pkgdir/usr/bin"
+ install -dm755 "$pkgdir/usr/share/licenses/gdrive"
+ install -m755 "$srcdir/gdrive-linux-$CARCH" "$pkgdir/usr/bin/gdrive"
+ install -m644 "$srcdir/LICENSE" "$pkgdir/usr/share/licenses/gdrive"
+}
+
+# vim:sw=4:ts=4:et
Please sign in to comment.
Something went wrong with that request. Please try again.