简体   繁体   中英

how to build gnome shell from source?

I want to install gnome shell on my machine from the project's gitlab repository for testing.

I searched their wiki but couldn't find any specific documentation to do this. I tried with gnome builder but it doesn't work either.

So, how does gnome team test gnome shell and how can i install it on my machine?

If you want to install the development version directly from GitLab, get the source on your local machine:

git clone https://gitlab.gnome.org/GNOME/gnome-shell.git

The following solution is from https://www.linuxfromscratch.org/blfs/view/cvs/gnome/gnome-shell.html

Now run:

mkdir build &&
cd build &&

meson --prefix=/usr -Dsystemd=false .. &&
ninja
sudo ninja install

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM