blob: c60b18bd9a2786856fce402df09ce6610f2a22e1 (
plain)
1 # Description: "zpool iostats" for humans; find the slow parts of your ZFS pool
2 # URL: https://github.com/chadmiller/zpool-iostat-viz
3 # Maintainer: Tim Biermann, tbier at posteo dot de
4 # Depends on: python3
5
6 name=zpool-iostat-viz
7 version=3
8 release=1
9 source=(https://github.com/chadmiller/zpool-iostat-viz/archive/$version/$name-$version.tar.gz)
10
11 build() {
12 install -Dt $PKG/usr/bin $name-$version/$name
13 }
|