Created
July 17, 2013 19:20
-
-
Save GermainZ/6023592 to your computer and use it in GitHub Desktop.
PKGBUILD for https://github.com/GermainZ/dev-host-cl
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
pkgname=devhost-git | |
pkgver=27.4ebe75f | |
pkgrel=1 | |
pkgdesc="Upload and manage files on http://d-h.st (Dev-Host)" | |
arch=('any') | |
url="https://github.com/GermainZ/dev-host-cl.git" | |
license=('GPL3') | |
depends=('python' 'python-requests') | |
makedepends=('git') | |
provides=('devhost') | |
source=("devhost::git+https://github.com/GermainZ/dev-host-cl.git") | |
md5sums=('SKIP') | |
pkgver() { | |
cd devhost | |
echo $(git rev-list --count HEAD).$(git rev-parse --short HEAD) | |
} | |
package() { | |
cd devhost | |
install -Dm755 "devhost.py" "${pkgdir}/usr/bin/devhost" | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment