blend-inst/PKGBUILD

22 lines
590 B
Text
Raw Normal View History

2023-04-19 11:31:30 -05:00
pkgname='blend-inst-git'
pkgver=r3.76d89ef
pkgrel=1
pkgdesc='blendOS Installer Framework'
arch=(any)
2023-04-19 13:48:34 -05:00
depends=('squashfs-tools' 'arch-install-scripts' 'util-linux' 'parted')
2023-04-19 11:31:30 -05:00
provides=('blend-inst')
conflicts=('blend-inst')
source=('git-inst::git+https://github.com/blend-os/blend-inst.git')
sha256sums=('SKIP')
pkgver() {
cd "${srcdir}/git-inst"
printf "r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)"
}
package() {
cd "${srcdir}/git-inst"
install -Dm755 blend-inst -t "${pkgdir}/usr/bin/"
2024-02-13 08:49:35 -06:00
install -Dm755 blend-postinst -t "${pkgdir}/usr/bin/"
2023-04-19 11:31:30 -05:00
}