blob: 6a957ddda34844b4758846fa23c1af85cefe109b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
# A lightweight CLI tool to compile and run PL's instantly.
# Maintainer: Yasir Peker <yasirzengin10@gmail.com>
pkgname=qrun-code-git
_pkgname=qrun
pkgver=1.0.3
pkgrel=1
pkgdesc="A lightweight CLI tool to compile and run C, C++, Python, and Go instantly."
arch=('any')
url="https://github.com/lanierc/qrun"
license=('MIT')
depends=('gcc' 'python' 'go')
makedepends=('git')
source=("git+https://github.com/lanierc/qrun.git")
sha256sums=('SKIP')
package() {
cd "$srcdir/$_pkgname"
install -Dm755 qrun "$pkgdir/usr/bin/qrun"
}
|