Skip to content

Commit 2233b9d

Browse files
committed
Tucana 2.3.2-c2 prepare for parital repo rebuild (ICU)
1 parent 5f9860c commit 2233b9d

23 files changed

Lines changed: 385 additions & 80 deletions

cinnamon/cinnamon

Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
#!/bin/bash
2+
3+
export CFLAGS=-"O2"
4+
export CXXFLAGS="-O2"
5+
6+
PACKAGE=cinnamon
7+
PKG_VER=5.8.1
8+
URL=https://github.com/linuxmint/$PACKAGE/archive/$PKG_VER.tar.gz
9+
TAR=$(echo $URL | sed -r 's|(.*)/||')
10+
DIR=$PACKAGE-$PKG_VER
11+
12+
# Get Package
13+
14+
cd /blfs/builds
15+
wget $URL
16+
tar -xvf $TAR
17+
cd $DIR
18+
19+
# Build
20+
21+
mkdir cbuild
22+
cd cbuild
23+
24+
meson setup --prefix=/usr --buildtype=release
25+
26+
ninja
27+
28+
29+
# Install
30+
sudo DESTDIR=/pkgs/$PACKAGE ninja install
31+
sudo ninja install
32+
cd /pkgs
33+
34+
35+
36+
sudo echo "nm-applet caribou" > /pkgs/$PACKAGE/depends
37+
sudo tar -cvzpf $PACKAGE.tar.xz $PACKAGE
38+
sudo cp $PACKAGE.tar.xz /finished
39+
40+
41+
cd /blfs/builds
42+
sudo rm -r $DIR
43+
44+

cinnamon/cinnamon-control-center

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@ cd $DIR
1818

1919
# Build
2020

21-
mkdir build
22-
cd build
21+
mkdir cbuild
22+
cd cbuild
2323

2424
meson setup --prefix=/usr --buildtype=release
2525

@@ -40,5 +40,4 @@ sudo cp $PACKAGE.tar.xz /finished
4040

4141
cd /blfs/builds
4242
sudo rm -r $DIR
43-
44-
43+
rm -r *

cinnamon/cinnamon-desktop

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,9 @@ tar -xvf $TAR
1818
cd $DIR
1919

2020
# Build
21-
22-
mkdir build
23-
cd build
21+
patch -Np1 < ../config.patch
22+
mkdir cbuild
23+
cd cbuild
2424

2525
meson setup --prefix=/usr --buildtype=release
2626

@@ -41,5 +41,5 @@ sudo cp $PACKAGE.tar.xz /finished
4141

4242
cd /blfs/builds
4343
sudo rm -r $DIR
44-
44+
rm -r *
4545

cinnamon/cinnamon-menus

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ export CFLAGS=-"O2"
44
export CXXFLAGS="-O2"
55

66
PACKAGE=cinnamon-menus
7-
PKG_VER=5.8.1
7+
PKG_VER=5.8.0
88
URL=https://github.com/linuxmint/$PACKAGE/archive/$PKG_VER.tar.gz
99
TAR=$(echo $URL | sed -r 's|(.*)/||')
1010
DIR=$PACKAGE-$PKG_VER
@@ -18,8 +18,8 @@ cd $DIR
1818

1919
# Build
2020

21-
mkdir build
22-
cd build
21+
mkdir cbuild
22+
cd cbuild
2323

2424
meson setup --prefix=/usr --buildtype=release
2525

@@ -42,3 +42,4 @@ cd /blfs/builds
4242
sudo rm -r $DIR
4343

4444

45+
rm -r *

cinnamon/cinnamon-screensaver

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@ cd $DIR
1818

1919
# Build
2020

21-
mkdir build
22-
cd build
21+
mkdir cbuild
22+
cd cbuild
2323

2424
meson setup --prefix=/usr --buildtype=release
2525

@@ -42,3 +42,4 @@ cd /blfs/builds
4242
sudo rm -r $DIR
4343

4444

45+
rm -r *

cinnamon/cinnamon-session

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@ cd $DIR
1818

1919
# Build
2020

21-
mkdir build
22-
cd build
21+
mkdir cbuild
22+
cd cbuild
2323

2424
meson setup --prefix=/usr --buildtype=release
2525

@@ -33,7 +33,7 @@ cd /pkgs
3333

3434

3535

36-
sudo echo "cinnamon-desktop libcanberra libSM libXtst" > /pkgs/$PACKAGE/depends
36+
sudo echo "xapp libdbusmenu cinnamon-desktop libcanberra libSM libXtst" > /pkgs/$PACKAGE/depends
3737
sudo tar -cvzpf $PACKAGE.tar.xz $PACKAGE
3838
sudo cp $PACKAGE.tar.xz /finished
3939

@@ -42,3 +42,4 @@ cd /blfs/builds
4242
sudo rm -r $DIR
4343

4444

45+
rm -r *

cinnamon/cinnamon-settings-daemon

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@ cd $DIR
1818

1919
# Build
2020

21-
mkdir build
22-
cd build
21+
mkdir cbuild
22+
cd cbuild
2323

2424
meson setup --prefix=/usr --buildtype=release
2525

@@ -42,3 +42,4 @@ cd /blfs/builds
4242
sudo rm -r $DIR
4343

4444

45+
rm -r *

cinnamon/cinnamon-template

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@ cd $DIR
1818

1919
# Build
2020

21-
mkdir build
22-
cd build
21+
mkdir cbuild
22+
cd cbuild
2323

2424
meson setup --prefix=/usr --buildtype=release
2525

cinnamon/cjs

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@ cd $DIR
1818

1919
# Build
2020

21-
mkdir build
22-
cd build
21+
mkdir cbuild
22+
cd cbuild
2323

2424
meson setup --prefix=/usr --buildtype=release
2525

@@ -42,3 +42,4 @@ cd /blfs/builds
4242
sudo rm -r $DIR
4343

4444

45+
rm -r *

cinnamon/muffin

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@ cd $DIR
1818

1919
# Build
2020

21-
mkdir build
22-
cd build
21+
mkdir cbuild
22+
cd cbuild
2323

2424
meson setup --prefix=/usr --buildtype=release
2525

0 commit comments

Comments
 (0)