diff options
author | Dmitry Marakasov <amdmi3@FreeBSD.org> | 2021-09-07 17:13:49 +0000 |
---|---|---|
committer | Dmitry Marakasov <amdmi3@FreeBSD.org> | 2021-09-09 19:13:43 +0000 |
commit | 65614cb11873f57c90adb2bd14b1d815d1181446 (patch) | |
tree | da984d2df9baf224eee49d5e96d9fed25b5a1d1b | |
parent | 2bc82370c34f7d9bab28ce0cc841defbaba4569c (diff) | |
download | ports-65614cb11873f57c90adb2bd14b1d815d1181446.tar.gz ports-65614cb11873f57c90adb2bd14b1d815d1181446.zip |
x11/sdwmbar: add port: Simple statusbar for the dwm window manager
A simple statusbar for x11-wm/dwm
Shows load averages, date-time and battery life.
WWW: https://github.com/sakhmatd/sdwmbar
-rw-r--r-- | x11/Makefile | 1 | ||||
-rw-r--r-- | x11/sdwmbar/Makefile | 25 | ||||
-rw-r--r-- | x11/sdwmbar/distinfo | 3 | ||||
-rw-r--r-- | x11/sdwmbar/pkg-descr | 5 |
4 files changed, 34 insertions, 0 deletions
diff --git a/x11/Makefile b/x11/Makefile index 7a964eade35f..72e0d3e5965c 100644 --- a/x11/Makefile +++ b/x11/Makefile @@ -319,6 +319,7 @@ SUBDIR += screenkey SUBDIR += scripts SUBDIR += sddm + SUBDIR += sdwmbar SUBDIR += sessreg SUBDIR += setlayout SUBDIR += setxkbmap diff --git a/x11/sdwmbar/Makefile b/x11/sdwmbar/Makefile new file mode 100644 index 000000000000..c9dd690ba47a --- /dev/null +++ b/x11/sdwmbar/Makefile @@ -0,0 +1,25 @@ +PORTNAME= sdwmbar +PORTVERSION= 1.3 +CATEGORIES= x11-wm + +MAINTAINER= sakhmatd@darkn.space +COMMENT= Simple statusbar for the dwm window manager + +LICENSE= APACHE20 +LICENSE_FILE= ${WRKSRC}/LICENSE + +RUN_DEPENDS= dwm:x11-wm/dwm + +USES= xorg +USE_XORG= x11 +MAKE_ENV= XPREFIX=${LOCALBASE} + +USE_GITHUB= yes +GH_ACCOUNT= sakhmatd + +PLIST_FILES= bin/sdwmbar + +post-install: + @${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/sdwmbar + +.include <bsd.port.mk> diff --git a/x11/sdwmbar/distinfo b/x11/sdwmbar/distinfo new file mode 100644 index 000000000000..9ce94cf3f673 --- /dev/null +++ b/x11/sdwmbar/distinfo @@ -0,0 +1,3 @@ +TIMESTAMP = 1619204444 +SHA256 (sakhmatd-sdwmbar-1.3_GH0.tar.gz) = 94f5c639673dc097c2bfcd05e73eb2229cc83ac6b1eb4b55277ef7ea5452bf4c +SIZE (sakhmatd-sdwmbar-1.3_GH0.tar.gz) = 6374 diff --git a/x11/sdwmbar/pkg-descr b/x11/sdwmbar/pkg-descr new file mode 100644 index 000000000000..99c0ff02260b --- /dev/null +++ b/x11/sdwmbar/pkg-descr @@ -0,0 +1,5 @@ +A simple statusbar for x11-wm/dwm + +Shows load averages, date-time and battery life. + +WWW: https://github.com/sakhmatd/sdwmbar |