From 50868c9e75b2b8a57bc050905373246ed0591d46 Mon Sep 17 00:00:00 2001 From: unstable-code Date: Tue, 23 Dec 2025 03:49:58 +0900 Subject: [PATCH] fix: Install wshowlyrics-offset helper script to /usr/bin MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Add explicit installation of wshowlyrics-offset script that provides runtime control for adjusting lyrics offset. This script was already included in meson.build but was missing from manual installation in wshowlyrics-git PKGBUILD. Changes: - Add install command for wshowlyrics-offset with executable permissions - Use Dm755 mode (drwx r-x r-x with file rwx r-- r--) - Position after binary installation with descriptive comment Benefits: - Users can now adjust lyrics timing offset at runtime - Consistent with stable package behavior - Matches meson.build configuration Fixes: Missing utility script in git package 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Sonnet 4.5 --- PKGBUILD | 3 +++ 1 file changed, 3 insertions(+) diff --git a/PKGBUILD b/PKGBUILD index ae616478d45a..dc397e6359b6 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -54,6 +54,9 @@ package() { # Install binary install -Dm755 build/lyrics "$pkgdir/usr/bin/wshowlyrics" + # Install helper script for runtime offset control + install -Dm755 wshowlyrics-offset "$pkgdir/usr/bin/wshowlyrics-offset" + # Install system-wide configuration file install -Dm644 settings.ini.example "$pkgdir/etc/wshowlyrics/settings.ini"