Initial public release of Warp.

Repo-Sync-Origin: warpdotdev/warp-internal@12af1d983b
This commit is contained in:
David Stern
2026-04-28 08:43:33 -05:00
commit 0dbd3d567a
4982 changed files with 1431549 additions and 0 deletions
@@ -0,0 +1,14 @@
Package: warp-terminal@@CHANNEL_SUFFIX@@
Version: @@VERSION@@
Section: devel
Depends: fontconfig, libegl1, libwayland-client0, libwayland-egl1, libx11-6, libxcb1, libxcursor1, libxi6, libxkbcommon-x11-0, zlib1g
Recommends: libgl1-mesa-dri, yaru-icon-theme | adwaita-icon-theme-full
Priority: optional
Architecture: @@ARCH@@
Maintainer: Warp Linux Maintainers <linux-maintainers@warp.dev>
Homepage: https://warp.dev/
Description: Warp, the Rust-based terminal for developers and teams
Warp is a modern, Rust-based terminal with AI built in so teams can
build great software, faster. Bringing collaboration to the command line,
Warp lets teams save and share commands for streamlined onboarding and
incident response.
@@ -0,0 +1,10 @@
#!/usr/bin/env bash
# Create a symlink from /usr/bin to our binary under /opt.
rm -f /usr/bin/warp-terminal@@CHANNEL_SUFFIX@@
ln -s @@OPTDIR@@/@@BINARY_NAME@@ /usr/bin/warp-terminal@@CHANNEL_SUFFIX@@
# Make sure the system incorporates the newly-installed desktop file.
if hash update-desktop-database 2>/dev/null; then
update-desktop-database
fi
@@ -0,0 +1,12 @@
#!/usr/bin/env bash
# The action ("remove" or "purge") is passed as the first argument to the
# postrm script.
action="$1"
rm -f /usr/bin/warp-terminal@@CHANNEL_SUFFIX@@
# Make sure the system forgets the newly-uninstalled desktop file.
if hash update-desktop-database 2>/dev/null; then
update-desktop-database
fi