blob: 8188adae00dbc86237c312478130763363eae991 (
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
|
# Maintainer: Webarch <contact@webarch.ro>
# Auto-updated by GitHub Actions
pkgname=windsurf-next
pkgver=1.9577.1020_next.ed9304df73
pkgrel=1
pkgdesc="Windsurf-next - Next version of the Windsurf editor"
arch=('x86_64')
url="https://windsurf.com"
license=('custom')
# APT repository configuration
_apt_base="https://windsurf-stable.codeiumdata.com/mQfcApCOdSLoWOSI/apt"
# Upstream version format: 1.12.157+next.10ebfa84f4 (from Packages file)
_upstream_ver="${pkgver//_/+}"
# Deb filename from APT pool
_debfile="Windsurf-linux-x64-${_upstream_ver}.deb"
depends=(
'vulkan-driver'
'ffmpeg'
'glibc'
'libglvnd'
'gtk3'
'alsa-lib'
)
makedepends=('curl')
optdepends=(
'bash-completion: for bash shell completions'
'zsh: for zsh shell completions'
)
provides=("windsurf-next")
conflicts=("windsurf-next")
options=('!strip')
source=(
"${pkgname}-${pkgver}.deb::${_apt_base}/pool/main/w/windsurf-next/${_debfile}"
'windsurf-next.desktop'
'windsurf-next-url-handler.desktop'
)
sha256sums=(
'6cacc6b68d14f5fde8cb7d7e421be86327e2c02d8f30580d58279f2a040c5e63'
'82f912789c91da072537934734771b557d310616f433591516b740342db0508f'
'884775875158639ccf975c991c5c8804b4b766df1eebc4f3a9ed8c47b2782f42'
)
prepare() {
cd "$srcdir"
# Extract the .deb file (ar archive)
mkdir -p deb-extract
cd deb-extract
ar x "../${pkgname}-${pkgver}.deb"
# Extract the data archive (contains the actual files)
mkdir -p data
# Handle both .tar.xz and .tar.zst formats
if [[ -f data.tar.xz ]]; then
tar -xf data.tar.xz -C data
elif [[ -f data.tar.zst ]]; then
tar -xf data.tar.zst -C data
elif [[ -f data.tar.gz ]]; then
tar -xf data.tar.gz -C data
fi
}
package() {
cd "$srcdir/deb-extract/data"
# The deb extracts to usr/share/windsurf-next/
# Copy all files to /opt for consistency with current package
install -dm755 "$pkgdir/opt/$pkgname"
cp -r usr/share/windsurf-next/* "$pkgdir/opt/$pkgname/"
# Create symlink for the executable
install -dm755 "$pkgdir/usr/bin"
ln -sf "/opt/$pkgname/$pkgname" "$pkgdir/usr/bin/$pkgname"
# Install the desktop entry files
install -Dm644 "$srcdir/$pkgname.desktop" "$pkgdir/usr/share/applications/$pkgname.desktop"
install -Dm644 "$srcdir/$pkgname-url-handler.desktop" "$pkgdir/usr/share/applications/$pkgname-url-handler.desktop"
# Install bash completion
if [[ -f "$pkgdir/opt/$pkgname/resources/completions/bash/$pkgname" ]]; then
install -Dm644 "$pkgdir/opt/$pkgname/resources/completions/bash/$pkgname" \
"$pkgdir/usr/share/bash-completion/completions/$pkgname"
fi
# Install zsh completion
if [[ -f "$pkgdir/opt/$pkgname/resources/completions/zsh/_$pkgname" ]]; then
install -Dm644 "$pkgdir/opt/$pkgname/resources/completions/zsh/_$pkgname" \
"$pkgdir/usr/share/zsh/site-functions/_$pkgname"
fi
# Install icon
install -Dm644 "$pkgdir/opt/$pkgname/resources/app/resources/linux/code-next.png" \
"$pkgdir/usr/share/pixmaps/$pkgname.png"
# Fix permissions
chmod 755 "$pkgdir/opt/$pkgname/$pkgname"
chmod 4755 "$pkgdir/opt/$pkgname/chrome-sandbox"
}
|