blob: 3ee94d2a480e701c473548963ffcc54c1205d961 (
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
|
# Maintainer: Cedric Roijakkers <cedric [the at sign goes here] roijakkers [the dot sign goes here] be>.
# Inspired from the PKGBUILD for vscodium-bin and code-stable-git.
pkgname=vscodium
# Make sure the pkgver matches the git tags in vscodium and vscode git repo's!
pkgver=1.62.1
pkgrel=1
pkgdesc="Free/Libre Open Source Software Binaries of VSCode (git build from latest release)."
arch=('x86_64' 'aarch64' 'armv7h')
# The vscodium repo that will be checked out.
url='https://github.com/VSCodium/vscodium.git'
# The vscode repo that will also be checked out.
microsofturl='https://github.com/microsoft/vscode.git'
license=('MIT')
# Version of NodeJS that will be used to create the build. Sinds 1.58.0, Codium requires a version >=14 and <=17.
_nodejs='14.16.0'
depends=(
'fontconfig'
'libxtst'
'gtk3'
'cairo'
'alsa-lib'
'nss'
'libnotify'
'libxss'
'glibc>=2.28-4'
'libxkbfile'
)
optdepends=(
'gvfs: For move to trash functionality'
'libdbusmenu-glib: For KDE global menu'
)
makedepends=(
'nvm'
'gulp'
'yarn'
'jq'
'libxdmcp'
'git'
'git-lfs'
'patch'
'python'
'pkg-config'
)
source=(
"git+${url}#tag=${pkgver}"
"git+${microsofturl}#tag=${pkgver}"
'vscodium.desktop'
)
sha256sums=(
'SKIP'
'SKIP'
'63eccd0977b9dc783a11ff401940f48bbabd0d098b9563b7ef26402495dc9b88'
)
provides=('codium')
###############################################################################
# Even though we don't officially support other archs, let's allow the
# user to use this PKGBUILD to compile the package for their architecture.
case "$CARCH" in
x86_64)
_vscode_arch=x64
;;
aarch64)
_vscode_arch=arm64
;;
armv7h)
_vscode_arch=arm
;;
*)
# Needed for mksrcinfo
_vscode_arch=DUMMY
;;
esac
prepare() {
cd 'vscodium'
# Normally, we would execute get_repo.sh to clone the Microsoft repo here, but makepkg can't do this.
# So we rely on the clone that happened earlier, and move the git directory to the expected place.
rm -rf 'vscode'
mv '../vscode' 'vscode'
}
build() {
cd "vscodium"
# Export some environment variables that would normally be set by Travis CI.
export SHOULD_BUILD="yes"
export VSCODE_ARCH="${_vscode_arch}"
export OS_NAME="linux"
export LATEST_MS_COMMIT=$(git rev-list --tags --max-count=1)
export LATEST_MS_TAG=$(git describe --tags "${LATEST_MS_COMMIT}")
# Disable building rpm, deb, and AppImage packages which are not needed in an AUR build
export SKIP_LINUX_PACKAGES="True"
# Build just like Travis does: install NodeJS and run the build.sh script.
source /usr/share/nvm/init-nvm.sh
nvm install ${_nodejs}
./build.sh
}
package() {
install -d -m755 ${pkgdir}/usr/bin
install -d -m755 ${pkgdir}/usr/share/{${pkgname},applications,pixmaps}
install -d -m755 ${pkgdir}/usr/share/licenses/${pkgname}
cp -r ${srcdir}/vscodium/LICENSE ${pkgdir}/usr/share/licenses/${pkgname}
cp -r ${srcdir}/vscodium/VSCode-linux-${_vscode_arch}/* ${pkgdir}/usr/share/${pkgname}
ln -s /usr/share/${pkgname}/bin/codium ${pkgdir}/usr/bin/codium
ln -s /usr/share/${pkgname}/bin/codium ${pkgdir}/usr/bin/vscodium
install -D -m644 vscodium.desktop ${pkgdir}/usr/share/applications/vscodium.desktop
install -D -m644 ${srcdir}/vscodium/VSCode-linux-${_vscode_arch}/resources/app/resources/linux/code.png \
${pkgdir}/usr/share/pixmaps/vscodium.png
}
|