feat: settings application architecture

This commit is contained in:
Michael Aaron Murphy 2023-01-25 04:14:49 +01:00
commit 2709dcfee5
No known key found for this signature in database
GPG key ID: B2732D4240C9212C
43 changed files with 7244 additions and 0 deletions

5
debian/changelog vendored Normal file
View file

@ -0,0 +1,5 @@
cosmic-settings (0.1.0) jammy; urgency=medium
* Project in development
-- Michael Murphy <michael@mmurphy.dev> Wed, 25 Jan 2023 16:27:38 +0100

21
debian/control vendored Normal file
View file

@ -0,0 +1,21 @@
Source: cosmic-settings
Section: utils
Priority: optional
Maintainer: Michael Murphy <mmstick@pm.me>
Build-Depends:
debhelper-compat (=13),
just,
cargo,
cmake,
libexpat1-dev,
libfontconfig-dev,
libfreetype-dev,
pkg-config,
Standards-Version: 4.6.2
Homepage: https://github.com/pop-os/cosmic-settings
Package: cosmic-settings
Architecture: amd64 arm64
Depends: ${misc:Depends}, ${shlibs:Depends}
Description: Settings application for the COSMIC desktop environment
Settings application for the COSMIC desktop environment

7
debian/copyright vendored Normal file
View file

@ -0,0 +1,7 @@
Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
Upstream-Name: cosmic-settings
Upstream-Contact: Michael Murphy <michael@mmurphy.dev>
Source: https://github.com/pop-os/cosmic-settings
Files: *
Copyright: System76 <info@system76.com>
License: GPL-3.0

27
debian/rules vendored Executable file
View file

@ -0,0 +1,27 @@
#!/usr/bin/make -f
export DESTDIR = debian/cosmic-settings
export VENDOR ?= 1
CLEAN ?= 1
%:
dh $@
override_dh_auto_clean:
if test "${CLEAN}" = "1"; then \
cargo clean; \
fi
if ! ischroot && test "${VENDOR}" = "1"; then \
mkdir -p .cargo; \
cargo vendor | head -n -1 > .cargo/config; \
echo 'directory = "vendor"' >> .cargo/config; \
tar pcf vendor.tar vendor; \
rm -rf vendor; \
fi
override_dh_auto_build:
just x86-64-target=x86-64-v2 build-vendored
override_dh_auto_install:
just rootdir=$(DESTDIR) install

1
debian/source/format vendored Normal file
View file

@ -0,0 +1 @@
3.0 (native)

1
debian/source/options vendored Normal file
View file

@ -0,0 +1 @@
tar-ignore = ".github .vscode vendor target"