1SUMMARY="A Deskbar replicant to display the current workspace number"
2DESCRIPTION="WorkspaceNumber is a replicant to display the current workspace number \
3in Deskbar's tray. It helps keeping track of the current workspace in case you have \
4similar or the same Desktop backgrounds across your workspaces.
5
6Left-click the icon to open Haiku's Workspaces applet.
7Use the mouse-wheel while hovering over the icon to move through the workspaces.
8To remove WorkspaceNumber from Deskbar, launch it again or right-click the icon and \
9select 'Quit'."
10HOMEPAGE="https://github.com/HaikuArchives/WorkspaceNumber"
11COPYRIGHT="1999 Micha�� Kowalski
12	2023 Humdinger"
13LICENSE="MIT"
14REVISION="1"
15SOURCE_URI="$HOMEPAGE/archive/v$portVersion.tar.gz"
16CHECKSUM_SHA256="66ce5d358c5ec54ce9410853f52955b67cb294e1fa079bcc236f98d718b2fe4f"
17SOURCE_DIR="WorkspaceNumber-$portVersion"
18
19ARCHITECTURES="all"
20
21PROVIDES="
22	workspacenumber = $portVersion
23	app:WorkspaceNumber = $portVersion
24	"
25REQUIRES="
26	haiku
27	"
28
29BUILD_REQUIRES="
30	haiku_devel
31	"
32BUILD_PREREQUIRES="
33	makefile_engine
34	cmd:g++
35	cmd:make
36	"
37
38BUILD()
39{
40	cd source
41	make $jobArgs
42	make bindcatalogs
43}
44
45INSTALL()
46{
47	mkdir -p $appsDir
48	cp -af WorkspaceNumber $appsDir
49
50	addAppletDeskbarSymlink $appsDir/WorkspaceNumber
51}
52