From 776eb1009737d85653861985965295d8e9c485d2 Mon Sep 17 00:00:00 2001 From: davidovski Date: Tue, 22 Feb 2022 16:22:32 +0000 Subject: skipping broken packages --- repo/skip/polybar.xibuild | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 repo/skip/polybar.xibuild (limited to 'repo/skip/polybar.xibuild') diff --git a/repo/skip/polybar.xibuild b/repo/skip/polybar.xibuild new file mode 100644 index 0000000..a4221a8 --- /dev/null +++ b/repo/skip/polybar.xibuild @@ -0,0 +1,24 @@ +#!/bin/bash + +MAKEDEPS=(make) +DEPS=(cairo xcb-util-image xcb-util-wm xcb-util-xrm xcb-util-cursor alsa-lib libpulse libmpdclient libnl jsoncpp curl) + +PKG_VER=3.5.7 +SOURCE=https://github.com/polybar/polybar/releases/download/$PKG_VER/polybar-$PKG_VER.tar.gz + +DESC="A fast and easy status bar" + +build () { + mkdir build && + cd build + + cmake -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_BUILD_TYPE=Release -DPYTHON_EXECUTABLE=/usr/bin/python3 .. + cmake --build . + + cd .. +} + +package () { + cmake --build "build" --target install -- DESTDIR=$PKG_DEST + +} -- cgit v1.2.1