blob: 519c655ab43984c07c47ba082e1468ab1e6bf475 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
|
# Maintainer: Utkarsh Kr. Singh <utkarshkrsingh@proton.me>
pkgname='clirun'
pkgver=1
pkgrel=1
#epoch=
pkgdesc="cli based code runner whenever the file is modified"
arch=('x86_64')
url="https://github.com/utkarshkrsingh/clirun"
license=('BSD2')
#groups=()
#depends=()
makedepends=('git')
#checkdepends=()
#optdepends=()
#provides=()
#conflicts=()
#replaces=()
#backup=()
#options=()
#install=
#changelog=
#source=("$pkgname-$pkgver.tar.gz"
# "$pkgname-$pkgver.patch")
source=('clirun::git+https://github.com/utkarshkrsingh/clirun.git')
#noextract=()
sha256sums=('SKIP')
#validpgpkeys=()
#prepare() {
# cd "$pkgname-$pkgver"
# patch -p1 -i "$srcdir/$pkgname-$pkgver.patch"
#}
build() {
cd "$pkgname"
make
}
#check() {
# cd "$pkgname-$pkgver"
# make -k check
#}
package() {
cd "$pkgname"
install -Dm755 ./clirun "$pkgdir/usr/bin/clirun"
install -Dm644 ./README.md "$pkgdir/usr/share/doc/$pkgname"
}
|