mirror of
https://github.com/Snigdha-OS/snigdhaos-pkgbuilds.git
synced 2025-09-23 04:55:04 +02:00

Some checks are pending
Check Conventional Commit / check-commit-message (push) Waiting to run
23 lines
457 B
Bash
23 lines
457 B
Bash
#Maintainer: Eshan Roy <src.eshan@gmail.com>
|
|
|
|
pkgname=snigdhaos-virtualbox
|
|
pkgver=1
|
|
pkgrel=1
|
|
pkgdesc="Snigdha OS Virtual Box Dependency"
|
|
arch=('any')
|
|
depends=(
|
|
'hyperv'
|
|
'xf86-video-fbdev'
|
|
'open-vm-tools'
|
|
'xf86-video-vmware'
|
|
'qemu-guest-agent'
|
|
'spice-vdagent'
|
|
'virtualbox-guest-utils'
|
|
)
|
|
conflicts=()
|
|
replaces=()
|
|
|
|
pkgver() {
|
|
# cd "$srcdir/$pkgname"
|
|
printf "r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)"
|
|
} |