-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathPKGBUILD
52 lines (46 loc) · 2.1 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
52
# Maintainer: Colin Adler <[email protected]>
# Maintainer: Asher <[email protected]>
# Maintainer: cdrci <[email protected]>
# Contributor: Joe Previte <[email protected]>
# Contributor: Teffen Ellis <[email protected]>
# Contributor: Anmol <[email protected]>
pkgname=code-server
pkgver=4.96.4
pkgrel=1
pkgdesc="VS Code in the browser"
arch=("x86_64" "aarch64")
url="https://github.com/coder/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=('e861b9231395a0afd60887b5696a06b70b9fd76139b0aa21354f2374b244df146800a497a166763acd24b154bd542f4dd0a60d0b5de92118aefacca8073d84f0')
sha512sums_aarch64=('0373b568b95020082883d3efa282eca9c6e5d4b5772d00342a217e4ab20129b050ecbe32e70f7c9eccccfdef7cf1ce2377367c8ce83af0e6c2a1ddb678efe1a1')
package() {
if [[ ${CARCH} == 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" "$pkgdir/usr/share/licenses/$pkgname"
}