Last active
July 11, 2017 22:16
-
-
Save watzon/fb90c1f48fd8961d017020197b36a369 to your computer and use it in GitHub Desktop.
Omnisharp Roslyn PKGBUILD
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
# Maintainer: sixpindin <[email protected]> | |
pkgname=omnisharp-roslyn | |
pkgver=1.22.0 | |
pkgrel=1 | |
pkgdesc=".NET development platform based on on Roslyn workspaces." | |
arch=('x86_64') | |
url="https://github.com/OmniSharp/omnisharp-roslyn" | |
license=('MIT') | |
depends=('mono-git', 'libuv') | |
noextract=('$pkgname-$pkgver.tar.gz') | |
source=("$pkgname-$pkgver.tar.gz::https://github.com/OmniSharp/omnisharp-sublime/archive/$pkgver.tar.gz" | |
"LICENSE::https://raw.githubusercontent.com/OmniSharp/omnisharp-roslyn/master/license.md") | |
build() { | |
mkdir -p $pkgdir/opt/$pkgname | |
tar -xf $srcdir/$pkgname-$pkgver.tar.gz -C $pkgdir/opt/$pkgname | |
cd $pkgdir/opt/$pkgname | |
sh ./build.sh | |
} | |
package() { | |
install -D -m644 $srcdir/LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE" | |
} | |
md5sums=('551e277097017e36bea839a2a33eb627' | |
'19a620e118d664537fb9dac578810f8d') |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment