36 lines
1.0 KiB
Bash
36 lines
1.0 KiB
Bash
# Maintainer: Luke T. Shumaker <lukeshu@umorpha.io>
|
|
|
|
pkgname=umorpha-disk
|
|
pkgver=2
|
|
pkgrel=2
|
|
pkgdesc="Utilities for Umorpha's disk layout scheme"
|
|
arch=('any')
|
|
url="https://umorpha.io/"
|
|
license=('AGPL')
|
|
depends=(
|
|
# Normal runtime
|
|
lvm2
|
|
|
|
# Updates
|
|
mkinitcpio
|
|
arch-install-scripts
|
|
pv
|
|
)
|
|
source=(
|
|
umorpha-mount
|
|
umorpha-update
|
|
mkinitcpio-install
|
|
mkinitcpio-hook
|
|
)
|
|
sha256sums=('fa49777f06364610b02396a83153495777aa9708fc7ba0f9f5bc996afd4167be'
|
|
'6b6dfeeb58cef6b9d4b36e6e9c6a5f1a5986b90b65e935073c3d162db392ed81'
|
|
'27d107ca7c1b74317141005df22af9b0642a5b1f3713ed82f5de823b8d626415'
|
|
'8ffcb548135131c9b897bf2eb3fc73a4db0478fdfdff76fa9aa60ad117e04686')
|
|
|
|
package() {
|
|
install -Dm755 "$srcdir/umorpha-mount" "$pkgdir/usr/bin/umorpha-mount"
|
|
install -Dm755 "$srcdir/umorpha-update" "$pkgdir/usr/bin/umorpha-update"
|
|
install -Dm644 "$srcdir/mkinitcpio-install" "$pkgdir/usr/lib/initcpio/install/$pkgname"
|
|
install -Dm644 "$srcdir/mkinitcpio-hook" "$pkgdir/usr/lib/initcpio/hooks/$pkgname"
|
|
}
|