mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-13 03:03:15 +00:00
6a52305a5f
A light, single-file, minimalist window manager for X11. This window manager is single-file and a super small binary with low resource consumption. Personally, I find it's useful for focused work where you aren't moving around too much and don't need multiple workspaces (it doesn't support them, obviously). WWW: https://github.com/vardy/aphelia PR: 233365 Submitted by: Hyun Hwang <hyun@caffeinated.codes>
31 lines
637 B
Makefile
31 lines
637 B
Makefile
# $FreeBSD$
|
|
|
|
PORTNAME= aphelia
|
|
DISTVERSION= g20181126
|
|
CATEGORIES= x11-wm
|
|
|
|
MAINTAINER= hyun@caffeinated.codes
|
|
COMMENT= Light, single-file, minimalist window manager for X11
|
|
|
|
LICENSE= MIT
|
|
LICENSE_FILE= ${WRKSRC}/LICENSE
|
|
|
|
RUN_DEPENDS= dmenu_run:x11/dmenu \
|
|
st:x11/sterm
|
|
|
|
USE_GITHUB= yes
|
|
GH_ACCOUNT= vardy
|
|
GH_TAGNAME= 54c2d6fb18f3121ebaf836fad53ca48a2f3aa812
|
|
USE_XORG= x11
|
|
|
|
PLIST_FILES= bin/aphelia
|
|
|
|
do-build:
|
|
${CC} ${CFLAGS} -I${LOCALBASE}/include ${WRKSRC}/aphelia.c \
|
|
${LDFLAGS} -L${LOCALBASE}/lib -lX11 -o ${WRKSRC}/aphelia
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/aphelia ${STAGEDIR}${PREFIX}/bin/aphelia
|
|
|
|
.include <bsd.port.mk>
|