Skip to content

Embed URL

HTTPS clone URL

Subversion checkout URL

You can clone with
or
.
Download ZIP
PKGBUILD for OpenSpin
# Maintainer: Matthias Riegler <riegler.matthias2@gmail.com>
pkgname=openspin-git
pkgdesc="Open Source SPIN compiler for the Parallax® Propeller"
pkgver=20141122
pkgrel=1
arch=('i686' 'x86_64')
url="https://github.com/parallaxinc/OpenSpin"
license=('MIT')
makedepends=('git')
source=('git+https://github.com/parallaxinc/OpenSpin.git')
sha256sums=('SKIP')
pkgver() {
cd "$pkgname"
git describe --long | sed -r 's/([^-]*-g)/r\1/;s/-/./g'
}
build() {
cd OpenSpin
make
}
package() {
cd OpenSpin
install -Dm 755 openspin "${pkgdir}/usr/bin/openspin"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Something went wrong with that request. Please try again.