blob: 84dcd54aa05ab0df820f83ce4fc010ca0342e10d (
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
|
# Maintainer: Oscar Morante <spacepluk@gmail.com>
_version=2018.2.18
_build=f1
_randomstring=4550892b6062
_prefix=/opt/Unity
pkgname=unity-editor-language-ja
pkgver=${_version}${_build}
pkgrel=1
pkgdesc="Japanese Language Pack (Preview)"
arch=('x86_64')
url='https://unity3d.com/'
license=('custom')
depends=('unity-editor')
source=("https://new-translate.unity3d.jp/v1/live/54/2018.2/ja")
sha1sums=('2e154b9b792d0e62e0d7b3ef88a643d10ce03fac')
options=(!strip)
PKGEXT='.pkg.tar' # Prevent compressing of the final package
package() {
_dest="${pkgdir}${_prefix}/Editor/Data/Localization"
install -d "${_dest}"
mv ja "${_dest}/ja.po"
}
|