summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 407d9b2514397e4bb4f6337e86dde910fe113edc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
# Maintainer: Thiago Perrotta <perrotta dot thiago at poli dot ufrj dot br>
# Maintainer: Matthew Ellison <matt+aur@arroyonetworks.com>

# Purpose of this package: to automate some steps covered in the ArchWiki.

pkgname=vmware-systemd-services
pkgver=0.2
pkgrel=1
pkgdesc="A collection of systemd services to interface with VMWare /etc/init.d scripts."
arch=('any')
url="https://wiki.archlinux.org/index.php/VMware"
license=('ISC')
groups=('vmware')
depends=('systemd')
source=('vmware.service'
		'vmware-usbarbitrator.service'
    'vmware-workstation-server.service')
sha256sums=('883a0757f5178bd11829e05a10f41e749c06c9a53accb8a4696fe24468972945'
         '9d4482421df702f9ed8bc272b7c0dfea27fb99aa98830a4be139fdf339a89bf7'
         '89a16bd8cabed700b94fd242e85d7b40d46a76f3e5ae85274cf457d470ca34de')

package() {
	cd "$srcdir"

	_systemdbasedir="$pkgdir/usr/lib/systemd/system"

	for file in *.service
	do
		install -Dm644 $file "$_systemdbasedir/$file"
	done
}