akshara/PKGBUILD

35 lines
1.1 KiB
Text
Raw Normal View History

2023-05-12 02:29:45 -05:00
# Maintainer: Rudra Saraswat <rs2009@ubuntu.com>
pkgname='akshara-git'
pkgver=r33.e380b80
2023-05-16 07:37:56 -05:00
pkgrel=2
2023-05-12 02:32:16 -05:00
pkgdesc="An update system for operating systems"
2023-05-12 02:29:45 -05:00
arch=('x86_64' 'i686')
url="https://github.com/blend-os/blend"
license=('GPL3')
makedepends=("electron${_electronversion}" 'git' 'npm' 'base-devel')
source=('git+file://[BASE_ASSEMBLE_PATH]/projects/akshara')
2023-05-12 02:29:45 -05:00
sha256sums=('SKIP')
2023-06-19 13:14:13 -05:00
depends=('bash' 'python' 'python-lockfile' 'python-psutil' 'python-fasteners' 'squashfs-tools' 'p7zip' 'zsync2')
2023-05-12 02:29:45 -05:00
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 10:40:22 -05:00
"${pkgdir}"/usr/lib/systemd/system/
2023-05-12 02:29:45 -05:00
install -Dm644 "${pkgname%-git}.hook" \
"${pkgdir}/usr/lib/initcpio/hooks/${pkgname%-git}"
install -Dm644 "${pkgname%-git}.install" \
"${pkgdir}/usr/lib/initcpio/install/${pkgname%-git}"
}