-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathPKGBUILD
51 lines (44 loc) · 2.02 KB
/
PKGBUILD
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
# Maintainer: Colin Adler <[email protected]>
# Maintainer: Asher <[email protected]>
# Maintainer: Joe Previte <[email protected]>
# Contributor: Anmol <[email protected]>
pkgname=code-server
pkgver=3.9.2
pkgrel=1
pkgdesc="VS Code in the browser"
arch=("x86_64" "aarch64")
url="https://github.com/cdr/code-server"
license=(MIT)
depends=(glibc)
source=(
"$pkgname-$pkgver-user.service::https://raw.githubusercontent.com/cdr/code-server/v$pkgver/ci/build/code-server-user.service"
"[email protected]::https://raw.githubusercontent.com/cdr/code-server/v$pkgver/ci/build/[email protected]"
)
release_name="code-server-${pkgver}-linux"
source_x86_64=(
"${url}/releases/download/v$pkgver/$release_name-amd64.tar.gz"
)
source_aarch64=(
"${url}/releases/download/v$pkgver/$release_name-arm64.tar.gz"
)
sha512sums=('7040df09c7404a56dbbb32e09d04ead3b622773520feae19c6710656cef46ca5d79b1972bfebb931e309e495d041b9938cd6a51c39fc0f8f6133dfe711be9280'
'ab8e679c05f6184f163dccf0651e8c1fac22a29ae583148f8c93b6930ece27cdff45a48b425e8b15b8c8ce749015680a3ae8225b7e8037979ff3d228f396f629')
sha512sums_x86_64=('b6f493af264a772dd56393447b158e50578316ceb62593cb4e9838783bb0472a7933fc7c036b03c0daac1ebf1d160cf6262c41b83751fb39cf4748159c2b7c03')
sha512sums_aarch64=('bf9863d3877ce692f2a9f1e129f25edb05e7323a49db6dfc0fbd3b5df153f6a0edecc7395c75acda81eb4fdae0ed2cfdffccc8c155785e2bd994ebb58b39462f')
package() {
if [[ $(uname -m) == x86_64 ]]; then
release_name+=-amd64
else
release_name+=-arm64
fi
mkdir -p "$pkgdir/usr/lib"
cp -a "$release_name" "$pkgdir/usr/lib/$pkgname"
mkdir -p "$pkgdir/usr/bin"
ln -s "/usr/lib/$pkgname/bin/$pkgname" "$pkgdir/usr/bin/$pkgname"
mkdir -p "$pkgdir/usr/lib/systemd/system"
cp -aL "[email protected]" "$pkgdir/usr/lib/systemd/system/[email protected]"
mkdir -p "$pkgdir/usr/lib/systemd/user"
cp -aL "$pkgname-$pkgver-user.service" "$pkgdir/usr/lib/systemd/user/$pkgname.service"
mkdir -p "$pkgdir/usr/share/licenses"
cp -a "$release_name/LICENSE.txt" "$pkgdir/usr/share/licenses/$pkgname"
}