akshara/PKGBUILD

35 lines
1.1 KiB
Text
Raw Normal View History

2023-05-12 12:59:45 +05:30
# Maintainer: Rudra Saraswat <rs2009@ubuntu.com>
pkgname='akshara-git'
pkgver=r33.e380b80
2023-05-16 18:07:56 +05:30
pkgrel=2
2023-05-12 13:02:16 +05:30
pkgdesc="An update system for operating systems"
2023-05-12 12:59:45 +05:30
arch=('x86_64' 'i686')
url="https://github.com/blend-os/blend"
license=('GPL3')
2023-11-18 01:40:19 +05:30
makedepends=('git' 'base-devel')
source=('git+https://git.blendos.co/blendOS/system-tools/akshara')
2023-05-12 12:59:45 +05:30
sha256sums=('SKIP')
2023-11-18 01:40:19 +05:30
depends=('bash' 'python' 'python-lockfile' 'python-psutil' 'python-fasteners' 'python-yaml' 'squashfs-tools' 'p7zip' 'zsync2')
2023-05-12 12:59:45 +05:30
provides=("${pkgname%-git}")
conflicts=("${pkgname%-git}")
pkgver() {
cd "${srcdir}/${pkgbase%-git}"
printf "r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)"
}
package() {
cd "${srcdir}/${pkgbase%-git}"
install -Dm755 \
"${pkgname%-git}" \
-t "${pkgdir}"/usr/bin/
install -Dm644 "${pkgname%-git}.service" -t \
2023-05-15 21:10:22 +05:30
"${pkgdir}"/usr/lib/systemd/system/
2023-05-12 12:59:45 +05:30
install -Dm644 "${pkgname%-git}.hook" \
"${pkgdir}/usr/lib/initcpio/hooks/${pkgname%-git}"
install -Dm644 "${pkgname%-git}.install" \
"${pkgdir}/usr/lib/initcpio/install/${pkgname%-git}"
}