commit f6509afbae79a8ac4e662260136fc17540d67cef Author: shorinkiwata Date: Wed Feb 4 22:58:38 2026 +0900 Initial release v1.0.0 diff --git a/.SRCINFO b/.SRCINFO new file mode 100644 index 000000000000..73f183d91ed4 --- /dev/null +++ b/.SRCINFO @@ -0,0 +1,15 @@ +pkgbase = shorinclip + pkgdesc = A wayland clipboard TUI script using fzf wl-clipboard cliphist and kitty image preview + pkgver = 1.0.0 + pkgrel = 1 + url = https://github.com/SHORiN-KiWATA/shorinclip + arch = any + license = MIT + depends = fzf + depends = cliphist + depends = wl-clipboard + optdepends = ffmpegthumbnailer: Video thumbnail support + source = https://raw.githubusercontent.com/SHORiN-KiWATA/shorinclip/refs/heads/main/shorinclip + sha256sums = 50142c6b8176a0705bef42953d3d2618b16a86d2e904d710d5c1334c788278be + +pkgname = shorinclip diff --git a/PKGBUILD b/PKGBUILD new file mode 100644 index 000000000000..9c8b54662afa --- /dev/null +++ b/PKGBUILD @@ -0,0 +1,18 @@ +# Maintainer: Shorin <2433516202@qq.com> +pkgname=shorinclip +pkgver=1.0.0 +pkgrel=1 +pkgdesc="A wayland clipboard TUI script using fzf wl-clipboard cliphist and kitty image preview" +arch=('any') +url="https://github.com/SHORiN-KiWATA/shorinclip" +license=('MIT') +depends=('fzf' 'cliphist' 'wl-clipboard') +optdepends=('ffmpegthumbnailer: Video thumbnail support') + +source=("https://raw.githubusercontent.com/SHORiN-KiWATA/shorinclip/refs/heads/main/shorinclip") + +sha256sums=('50142c6b8176a0705bef42953d3d2618b16a86d2e904d710d5c1334c788278be') + +package() { + install -Dm755 "$srcdir/shorinclip" "$pkgdir/usr/bin/shorinclip" +}