Skip to content

Commit 7af10f3

Browse files
committed
Add a deb package
1 parent 7652ab4 commit 7af10f3

File tree

7 files changed

+65
-1
lines changed

7 files changed

+65
-1
lines changed

debian/changelog

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
io.github.ellie-commons.wingpanel-indicator-clipboard (1.0.0) jammy; urgency=medium
2+
3+
* Middle click to paste immediately
4+
5+
-- Stella <teamcons.carrd.co> Sun, 12 Oct 2025 14:55:00 +0100

debian/compat

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
10

debian/control

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
Source: io.github.ellie-commons.wingpanel-indicator-clipboard
2+
Section: x11
3+
Priority: optional
4+
Maintainer: Stella <teamcons.carrd.co>
5+
Build-Depends: debhelper (>= 10.5.1),
6+
libglib2.0-dev,
7+
libgranite-dev,
8+
libgtk-3-dev (>= 3.12),
9+
libwingpanel-dev,
10+
meson (>= 0.58),
11+
valac (>= 0.40.0)
12+
Standards-Version: 1.0.0
13+
Homepage: https://github.com/ellie-commons/wingpanel-indicator-clipboard
14+
15+
Package: io.github.ellie-commons.wingpanel-indicator-clipboard
16+
Architecture: any
17+
Version: 1.0.0
18+
Depends: ${misc:Depends}, ${shlibs:Depends}, indicator-application
19+
Enhances: io.elementary.wingpanel
20+
Description: Wingpanel Indicator Clipboard
21+
Simply display clipboard content in the elementary OS top bar

debian/copyright

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
Format: https://dep.debian.net/deps/dep5
2+
Upstream-Name: wingpanel-indicator-clipboard
3+
Source: https://github.com/ellie-commons/wingpanel-indicator-clipboard/
4+
5+
Files: *
6+
Copyright: 2025 Jeremy Wootten
7+
License: GPL-2
8+
This program is free software; you can redistribute it and/or
9+
modify it under the terms of the GNU General Public
10+
License as published by the Free Software Foundation; either
11+
version 2 of the License, or (at your option) any later version.
12+
13+
This program is distributed in the hope that it will be useful,
14+
but WITHOUT ANY WARRANTY; without even the implied warranty of
15+
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16+
General Public License for more details.
17+
18+
You should have received a copy of the GNU General Public
19+
License along with this program; if not, see
20+
<https://www.gnu.org/licenses/>.
21+
22+
On Debian systems, the complete text of the GNU General
23+
Public License can be found in `/usr/share/common-licenses/GPL-2.1'.

debian/rules

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
#!/usr/bin/make -f
2+
# -*- makefile -*-
3+
# Sample debian/rules that uses debhelper.
4+
# This file was originally written by Joey Hess and Craig Small.
5+
# As a special exception, when this file is copied by dh-make into a
6+
# dh-make output file, you may use that output file without restriction.
7+
# This special exception was added by Craig Small in version 0.37 of dh-make.
8+
9+
# Uncomment this to turn on verbose mode.
10+
#export DH_VERBOSE=1
11+
12+
%:
13+
dh $@
14+
Binary file not shown.

meson.build

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
project(
22
'clipboard-indicator',
33
'vala', 'c',
4-
version: '0.1'
4+
version: '1.0.0'
55
)
66

77
gettext_name = meson.project_name()

0 commit comments

Comments
 (0)