summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAram Drevekenin <aram@poor.dev>2020-01-21 19:22:42 +0100
committerGitHub <noreply@github.com>2020-01-21 19:22:42 +0100
commit218d71eb39345cd8ec549cf242e57f2cf8bde05c (patch)
tree42c69c99a581a48e700a707626e81801d80269a1
parentf76fbff7c63674d8a6a058a7020769dbe7e69363 (diff)
chore(build): remove pkgbuild (#142)
-rw-r--r--PKGBUILD28
1 files changed, 0 insertions, 28 deletions
diff --git a/PKGBUILD b/PKGBUILD
deleted file mode 100644
index 567636b..0000000
--- a/PKGBUILD
+++ /dev/null
@@ -1,28 +0,0 @@
-# Maintainer: Aram Drevekenin <aram@poor.dev>
-pkgname=bandwhich
-pkgver=0.3.7
-pkgrel=2
-makedepends=('rust' 'cargo')
-arch=('i686' 'x86_64' 'armv6h' 'armv7h')
-pkgdesc="Display network utilization by process, connection and remote address"
-url="https://github.com/imsnif/bandwhich"
-source=("https://github.com/imsnif/$pkgname/archive/$pkgver.tar.gz")
-license=('MIT')
-sha256sums=("b60f002bd095cad88dd1cd1b4bcbcf65482e52d73fdff961455133b8a4ee4666")
-
-check() {
- cd "$pkgname-$pkgver"
- cargo test --release --locked
-}
-
-build() {
- cd "$pkgname-$pkgver"
- cargo build --release --locked
-}
-
-package() {
- cd "$pkgname-$pkgver"
- install -Dm755 "target/release/bandwhich" "$pkgdir/usr/bin/bandwhich"
- install -Dm644 "docs/bandwhich.1" "$pkgdir/usr/share/man/man1/bandwhich.1"
- install -Dm644 LICENSE.md "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}