• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

.circleci/H08-Dec-2020-5746

debian/H08-Dec-2020-932688

install-scripts/H03-May-2022-2716

libcinnamon-desktop/H08-Dec-2020-18,09412,727

po/H08-Dec-2020-46,03136,050

schemas/H08-Dec-2020-2,4042,348

.gitignoreH A D08-Dec-202072 76

AUTHORSH A D08-Dec-2020466 2015

COPYINGH A D08-Dec-202017.7 KiB340281

COPYING.LIBH A D08-Dec-202024.8 KiB

ChangeLogH A D08-Dec-2020207.6 KiB7,9905,243

HACKINGH A D08-Dec-2020884 3219

MAINTAINERSH A D08-Dec-2020382 2014

READMEH A D08-Dec-2020966 3523

installer-testH A D03-May-20221.1 KiB5638

meson.buildH A D03-May-20224.4 KiB150119

README

1cinnamon-desktop
2=============
3
4cinnamon-desktop contains the libcinnamon-desktop library, the cinnamon-about
5program as well as some desktop-wide documents.
6
7The libcinnamon-desktop library provides API shared by several applications
8on the desktop, but that cannot live in the platform for various
9reasons. There is no API or ABI guarantee, although we are doing our
10best to provide stability. Documentation for the API is available with
11gtk-doc.
12
13
14Installation
15============
16
171) Run meson with options you like. The following configuration installs
18   all binaries, libs, and shared files into /usr/local, and enables all
19   available options:
20
21    meson debian/build \
22        --prefix=/usr/local \
23        --buildtype=debug \
24        -D deprecated_warnings=false
25
262) Compile and install (sudo is needed for install)
27
28    ninja -C debian/build
29    ninja -C debian/build install
30
313) You can uninstall the installed files with
32
33    ninja -C debian/build uninstall
34
35