summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 8dd55ceae3b6eac1ec99e595377fb70c5484ce15 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# Maintainer: SplatDem

pkgname=scic
pkgver=0.1.0
pkgrel=1
pkgdesc="SplatCheck Internet Connection -- utility for check your internet speed"
arch=('x86_64')
license=('GPL3')
makedepends=('rust')
source=('git+https://github.com/SplatDem/scic.git')
md5sums=('SKIP')

build() {
	cd "$pkgname"
	cargo build --release
}

package() {
	cd "$pkgname"
	cargo install --path . --root "$pkgdir/usr"
}