diff options
author | June McEnroe <june@causal.agency> | 2022-06-18 10:03:57 -0400 |
---|---|---|
committer | June McEnroe <june@causal.agency> | 2022-06-18 10:03:57 -0400 |
commit | 511f999dfab4fce8d31af9c388d616ce45a88398 (patch) | |
tree | cb96078d99295f62b1d25af3329b84ac2897df04 /extra/notify | |
parent | edit: Validate size is power of two (diff) | |
download | pounce-511f999dfab4fce8d31af9c388d616ce45a88398.tar.gz pounce-511f999dfab4fce8d31af9c388d616ce45a88398.zip |
Flatten extras to top-level directory
Diffstat (limited to '')
-rw-r--r-- | extra/notify/.gitignore | 3 | ||||
-rw-r--r-- | extra/notify/Makefile | 28 | ||||
-rwxr-xr-x | extra/notify/configure | 44 | ||||
-rw-r--r-- | notify.c (renamed from extra/notify/notify.c) | 0 | ||||
-rw-r--r-- | pounce-notify.1 (renamed from extra/notify/pounce-notify.1) | 0 |
5 files changed, 0 insertions, 75 deletions
diff --git a/extra/notify/.gitignore b/extra/notify/.gitignore deleted file mode 100644 index acd29ee..0000000 --- a/extra/notify/.gitignore +++ /dev/null @@ -1,3 +0,0 @@ -*.o -config.mk -pounce-notify diff --git a/extra/notify/Makefile b/extra/notify/Makefile deleted file mode 100644 index 5e8ed93..0000000 --- a/extra/notify/Makefile +++ /dev/null @@ -1,28 +0,0 @@ -PREFIX ?= /usr/local -BINDIR ?= ${PREFIX}/bin -MANDIR ?= ${PREFIX}/man - -CFLAGS += -std=c11 -Wall -Wextra -Wpedantic -LDADD.libtls = -ltls - --include config.mk - -LDLIBS = ${LDADD.libtls} -OBJS = notify.o - -all: pounce-notify - -pounce-notify: ${OBJS} - ${CC} ${LDFLAGS} ${OBJS} ${LDLIBS} -o $@ - -clean: - rm -f ${OBJS} pounce-notify - -install: pounce-notify pounce-notify.1 - install -d ${DESTDIR}${BINDIR} ${DESTDIR}${MANDIR}/man1 - install pounce-notify ${DESTDIR}${BINDIR} - install -m 644 pounce-notify.1 ${DESTDIR}${MANDIR}/man1 - -uninstall: - rm -f ${DESTDIR}${BINDIR}/pounce-notify - rm -f ${DESTDIR}${MANDIR}/man1/pounce-notify.1 diff --git a/extra/notify/configure b/extra/notify/configure deleted file mode 100755 index e180aa5..0000000 --- a/extra/notify/configure +++ /dev/null @@ -1,44 +0,0 @@ -#!/bin/sh -set -eu - -cflags() { - echo "CFLAGS += $*" -} -defstr() { - cflags "-D'$1=\"$2\"'" -} -defvar() { - defstr "$1" "$(pkg-config --variable=$3 $2)${4:-}" -} -ldadd() { - lib=$1; shift - echo "LDADD.${lib} = $*" -} -config() { - pkg-config --print-errors "$@" - cflags $(pkg-config --cflags "$@") - for lib; do ldadd $lib $(pkg-config --libs $lib); done -} - -exec >config.mk - -for opt; do - case "${opt}" in - (--prefix=*) echo "PREFIX = ${opt#*=}" ;; - (--bindir=*) echo "BINDIR = ${opt#*=}" ;; - (--mandir=*) echo "MANDIR = ${opt#*=}" ;; - (*) echo "warning: unsupported option ${opt}" >&2 ;; - esac -done - -case "$(uname)" in - (OpenBSD) - ;; - (Linux) - cflags -D_GNU_SOURCE - config libtls - ;; - (*) - config libtls - ;; -esac diff --git a/extra/notify/notify.c b/notify.c index 935ba26..935ba26 100644 --- a/extra/notify/notify.c +++ b/notify.c diff --git a/extra/notify/pounce-notify.1 b/pounce-notify.1 index 628bc25..628bc25 100644 --- a/extra/notify/pounce-notify.1 +++ b/pounce-notify.1 |