Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 24 additions & 0 deletions install-latest.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
#!/bin/bash

# Define the URL for the update.xml file
UPDATE_URL="https://app.filebot.net/update.xml"

# Fetch the latest version from update.xml
latest_version=$(wget -qO- "$UPDATE_URL" | grep -oP '(?<=<name>FileBot ).*(?=</name>)')

if [ -z "$latest_version" ]; then
echo "Error: Could not find the latest version in update.xml."
exit 1
fi

# Define the PKGBUILD file
PKGBUILD="PKGBUILD"

# Update only the pkgver in PKGBUILD
sed -i "s/^pkgver=.*/pkgver=$latest_version/" "$PKGBUILD"

# Update checksums
updpkgsums

# Install
makepkg -si --skipinteg