@bniladridas/cursor 0.1.10 → 0.1.12
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.github/workflows/release.yml +1 -1
- package/Formula/cursor.rb +2 -2
- package/install.js +6 -0
- package/package.json +1 -1
- package/release/checksums.txt +3 -3
- package/release/cursor-linux/cursor_v0.1.12_linux_amd64.tar.gz +0 -0
- package/release/cursor-macos/cursor_v0.1.12_darwin_arm64.tar.gz +0 -0
- package/release/cursor-windows/cursor__windows_amd64.zip +0 -0
- package/release/cursor-linux/cursor_v0.1.10_linux_amd64.tar.gz +0 -0
- package/release/cursor-macos/cursor_v0.1.10_darwin_arm64.tar.gz +0 -0
package/Formula/cursor.rb
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
class Cursor < Formula
|
|
2
2
|
desc "Professional AI agent with command execution and file operations"
|
|
3
3
|
homepage "https://github.com/bniladridas/cursor"
|
|
4
|
-
url "https://github.com/bniladridas/cursor/archive/refs/tags/v0.1.
|
|
5
|
-
sha256 "
|
|
4
|
+
url "https://github.com/bniladridas/cursor/archive/refs/tags/v0.1.12.tar.gz"
|
|
5
|
+
sha256 "3bd20c26f2efee7dacb13611c6827490b13600d0d3fe37aae8f2ef04f53315b0"
|
|
6
6
|
license "Apache-2.0"
|
|
7
7
|
|
|
8
8
|
depends_on "cmake" => :build
|
package/install.js
CHANGED
|
@@ -43,8 +43,14 @@ function download(url) {
|
|
|
43
43
|
console.log('extracting...');
|
|
44
44
|
if (process.platform === 'win32') {
|
|
45
45
|
execSync(`tar -xf "${path.join(binaryDir, archive)}" -C "${binaryDir}"`, { stdio: 'inherit' });
|
|
46
|
+
const extracted = path.join(binaryDir, 'cursor-windows.exe');
|
|
47
|
+
const target = path.join(binaryDir, 'cursor-agent.exe');
|
|
48
|
+
fs.renameSync(extracted, target);
|
|
46
49
|
} else {
|
|
47
50
|
execSync(`tar -xzf "${path.join(binaryDir, archive)}" -C "${binaryDir}"`, { stdio: 'inherit' });
|
|
51
|
+
const extracted = path.join(binaryDir, process.platform === 'darwin' ? 'cursor-macos' : 'cursor-linux');
|
|
52
|
+
const target = path.join(binaryDir, 'cursor-agent');
|
|
53
|
+
fs.renameSync(extracted, target);
|
|
48
54
|
}
|
|
49
55
|
fs.unlinkSync(path.join(binaryDir, archive));
|
|
50
56
|
console.log('done');
|
package/package.json
CHANGED
package/release/checksums.txt
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
1
|
+
7af056414e8acccc07cc6c8df3f59719c208838d5bbbfdce9d5d90f1ee59abff release/cursor-macos/cursor_v0.1.12_darwin_arm64.tar.gz
|
|
2
|
+
427389a6241dac5730e91aed0cfd11f383a5735a754ffbed6b2a84f984b24ed2 release/cursor-linux/cursor_v0.1.12_linux_amd64.tar.gz
|
|
3
|
+
de429eefa2bcd7bf570996a391a35d2d1efd6f9121fbba37ce857205106d7337 release/cursor-windows/cursor__windows_amd64.zip
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|