Skip to content

Instantly share code, notes, and snippets.

@danieloneill
Created February 3, 2025 09:34
Show Gist options
  • Save danieloneill/ea0ba3c14e06ad63e3fdeff21e79cf42 to your computer and use it in GitHub Desktop.
Save danieloneill/ea0ba3c14e06ad63e3fdeff21e79cf42 to your computer and use it in GitHub Desktop.
kdekbtool Alpine Linux build manifest (1.0)
# Contributor: Daniel O'Neill <[email protected]>
# Maintainer: Daniel O'Neill <[email protected]>
pkgname=kdekbtool
pkgver=1.0
pkgrel=0
pkgdesc="CLI Keyboard tool for KDE Plasma"
url="https://gist.github.com/danieloneill/8ccfab375a8819c61adb5883a0cd7c97"
arch="all"
license="GPL-3.0-only"
depends="qt6-qtbase"
makedepends="qt6-qtbase-dev qt6-qttools-dev"
checkdepends=""
install=""
subpackages=""
source="https://oneill.app/~doneill/kdekbtool-1.0.tar.xz"
builddir="$srcdir/"
options=!check
build() {
# Replace with proper build command(s).
# Remove if there is no build command.
cd "$builddir"
qmake6 "$srcdir/$pkgname-$pkgver"
make
}
check() {
# Replace with proper check command(s).
# Remove and add !check option if there is no check command.
!check
}
package() {
# Replace with proper package command(s)
install -Dm 755 kdekbtool -t "$pkgdir/usr/bin"
}
sha512sums="
0a005e7a4f2615fd57177602529b54f20fb2d47446c8914fc553be1909af57bd71047e75253791c7267debd7d58a95e227cc6c917d1233eceaa32fe1390a0500 kdekbtool-1.0.tar.xz
"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment