textbar/PKGBUILD
2024-08-03 16:08:00 +01:00

28 lines
731 B
Bash

# Maintainer: threeoh6000 <master@colean.cc>
pkgname="textbar"
pkgver="db4159c546"
pkgrel=3
pkgdesc="Text status bar for X11"
options=("!debug" "strip")
arch=("x86_64")
url="https://gitea.itycodes.org/itycodes/textbar"
license=("BSD-3-Clause")
depends=("cairo>=1.17.8"
"libx11>=1.8.0")
makedepends=("gcc>=11.0.0")
source=("https://gitea.itycodes.org/itycodes/textbar/archive/db4159c5469d763c3b8c901d2bd0559a9d03129a.tar.gz")
sha256sums=("b2d5b985a697dfbf09059084d030ac8ccf6b1a92791f7877bc9ba109d0a8e43b")
provides=("textbar")
conflicts=("textbar")
build() {
cd "textbar"
patch main.c "../../fix_x_loop.patch"
./compile.sh
}
package() {
cd "textbar"
mkdir -p "$pkgdir/usr/bin"
cp main.o "$pkgdir/usr/bin/textbar"
}