Add PKGBUILD

This commit is contained in:
Rudra Saraswat 2023-04-19 22:01:30 +05:30
parent 76d89ef022
commit 5add4b75cb

20
PKGBUILD Normal file
View file

@ -0,0 +1,20 @@
pkgname='blend-inst-git'
pkgver=r3.76d89ef
pkgrel=1
pkgdesc='blendOS Installer Framework'
arch=(any)
depends=('squashfs-tools')
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/"
}