From 38eeb490b39f75f56eef81772a0c594b5edb1f4e Mon Sep 17 00:00:00 2001 From: Ian Jackson Date: Tue, 10 Mar 2020 13:47:12 +0000 Subject: [PATCH] build system: Skeleton Currently produces an empty .deb. Signed-off-by: Ian Jackson --- Makefile | 6 ++++++ debian/.gitignore | 5 +++++ debian/changelog | 5 +++++ debian/compat | 1 + debian/control | 19 +++++++++++++++++++ debian/rules | 4 ++++ 6 files changed, 40 insertions(+) create mode 100644 Makefile create mode 100644 debian/.gitignore create mode 100644 debian/changelog create mode 100644 debian/compat create mode 100644 debian/control create mode 100755 debian/rules diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..cde4141 --- /dev/null +++ b/Makefile @@ -0,0 +1,6 @@ + +all: + +install: + +clean: diff --git a/debian/.gitignore b/debian/.gitignore new file mode 100644 index 0000000..9aa85d9 --- /dev/null +++ b/debian/.gitignore @@ -0,0 +1,5 @@ +.debhelper +*.substvars +chiark-tcl-applet +debhelper-* +files diff --git a/debian/changelog b/debian/changelog new file mode 100644 index 0000000..0ca756c --- /dev/null +++ b/debian/changelog @@ -0,0 +1,5 @@ +chiark-tcl-applet (1.0-1~) unstable; urgency=medium + + * + + -- diff --git a/debian/compat b/debian/compat new file mode 100644 index 0000000..48082f7 --- /dev/null +++ b/debian/compat @@ -0,0 +1 @@ +12 diff --git a/debian/control b/debian/control new file mode 100644 index 0000000..c79ab97 --- /dev/null +++ b/debian/control @@ -0,0 +1,19 @@ +Source: chiark-tcl-applet +Build-Depends: debhelper (>= 12~) +Maintainer: Ian Jackson + +Package: chiark-tcl-applet +Recommends: chiark-utils-bin +Depends: wish, tk-tktray +Suggests: trayer | stalonetray +Architecture: all +Description: Tray widget for battery monitor and other X11 programs + xbatmon-simple-tray is a battery status display, with useful + tooltip, which sits in your system tray. + . + There is also an example script which can embed any X11 program + in your system tray. + . + If you do not yet have an X11 system tray (eg because you are not + running a desktop environment with panel), consider trayer or + stalonetray. diff --git a/debian/rules b/debian/rules new file mode 100755 index 0000000..2d33f6a --- /dev/null +++ b/debian/rules @@ -0,0 +1,4 @@ +#!/usr/bin/make -f + +%: + dh $@ -- 2.30.2