blob: 74002ded88a61e71f73e06c7ea834ded2ff0543c (
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
|
# Maintainer: Oscar Morante <spacepluk at gmail dot com>
_prefix=/opt/UnityBeta
pkgname=unity-editor-beta-windows
pkgver=2019.2.0b1
pkgrel=1
pkgdesc="Allows building your Unity projects for the Windows platform"
arch=('x86_64')
url='https://unity3d.com/'
license=('custom')
depends=('unity-editor-beta')
makedepends=('cpio')
source=("2019.2.0b1.2.0b1.pkg::https://beta.unity3d.com/download/18ccf127b486/MacEditorTargetInstaller/UnitySetup-Windows-Mono-Support-for-Editor-2019.2.0b1.pkg")
md5sums=("784cb83d360790939a57c392b33ff60d")
options=(!strip)
PKGEXT='.pkg.tar' # Prevent compressing of the final package
package() {
_dest="${pkgdir}/${_prefix}/Editor/Data/PlaybackEngines/WindowsStandaloneSupport"
install -d "${_dest}"
cd "${_dest}"
cat "${srcdir}/TargetSupport.pkg.tmp/Payload" | gzip -dc | cpio -i
}
|