Last active
December 18, 2015 02:19
-
-
Save azenla/5710257 to your computer and use it in GitHub Desktop.
PKGBUILD for GCPClient
This file contains hidden or 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
| # Contributor: Kenneth Endfinger <kaendfinger@gmail.com> | |
| pkgname=gcpclient | |
| pkgver={CLIENT.VERSION} | |
| pkgrel=1 | |
| pkgdesc="GCPClient is the official GCP Client that is written in Java" | |
| arch=('i686' 'x86_64') | |
| url="https://bitbucket.org/directmyfile/gcpclient/" | |
| license=('GPL') | |
| depends=('jre7-openjdk') | |
| makedepends=('apache-ant' 'jdk7-openjdk') | |
| build() { | |
| cd "${srcdir}" | |
| msg "Retreiving GCPClient JAR" | |
| wget http://ci.directmyfile.com:8080/job/GCPClient/lastSuccessfulBuild/artifact/build/libs/GCPClient.jar | |
| msg "Retrieving GCPClient Launcher" | |
| } | |
| package() { | |
| cd "${pkgdir}/" | |
| [ ! -d "./usr/" ] && mkdir -p usr/share/GCPClient usr/bin/ | |
| cp "${srcdir}/launcher.sh" ./usr/bin/kenbot | |
| cp -R ${srcdir}/shared/* ./usr/share/KenBot/ | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment