summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: f272cca63e1f5340ef60b4d9269e2c36a175ede5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# Maintainer: Andrew Steinke <rkcf@rkcf.me>

pkgname=cockpit-zfs-manager
pkgver=0.3.3.404
pkgrel=1
pkgdesc="An interactive ZFS on Linux admin package for Cockpit"
arch=('any')
url="https://github.com/optimans/cockpit-zfs-manager"
license=('GPL3')
depends=('cockpit' 'zfs')
source=("https://github.com/optimans/cockpit-zfs-manager/archive/$pkgver.tar.gz")
md5sums=('c2c777c456349ca6d9ea28cf27b15083')

package() {
  install -dm755 "$pkgdir"/usr/share/cockpit/zfs

  for file in $(find "$srcdir/$pkgname-$pkgver/zfs/" -type f ); do
    install -Dm644 "$file" "$pkgdir"/usr/share/cockpit/zfs/;
  done
}

# vim:set ts=2 sw=2 et: