blob: e2f31fdbb2ef646802802f68afea0ea0d745ed06 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
# Miantainer : Yamada Hayao <hayao@fascode.net>
# Contributer: mrAppleXZ <mr.applexz@gmail.com>
pkgname=vmware-auto-unlocker
pkgver=1.1.3
pkgrel=1
pkgdesc="Unlocker for VMWare macOS"
arch=('x86_64')
url="https://github.com/paolo-projects/auto-unlocker/"
license=('GPL3')
depends=('curl' 'libarchive')
source=("git+https://github.com/paolo-projects/auto-unlocker.git#tag=v${pkgver}")
sha512sums=('SKIP')
build(){
cd "${srcdir}/auto-unlocker"
make
}
package() {
cd "${srcdir}/auto-unlocker"
make PREFIX="${pkgdir}/usr" install
}
|