Skip to content

Commit 38fe06d

Browse files
committed
Test Commit
1 parent 38e515b commit 38fe06d

8 files changed

Lines changed: 48 additions & 15 deletions

File tree

base/coreutils

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,5 @@
11
#!/bin/bash
22

3-
export CFLAGS=-"O2"
4-
export CXXFLAGS="-O2"
5-
6-
export CFLAGS=-"O2"
7-
export CXXFLAGS="-O2"
83

94
PKG_VER=9.3
105
URL=https://ftp.gnu.org/gnu/coreutils/coreutils-$PKG_VER.tar.xz

base/gnu-efi

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
#!/bin/bash
22

3-
export CFLAGS=-"O2"
4-
export CXXFLAGS="-O2"
53

64
export CFLAGS=-"O2"
75
export CXXFLAGS="-O2"
File renamed without changes.

firefox

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -39,12 +39,12 @@ ac_add_options --disable-necko-wifi
3939
4040
# Comment out following options if you have not installed
4141
# recommended dependencies:
42-
ac_add_options --with-system-icu
42+
#ac_add_options --with-system-icu
4343
ac_add_options --with-system-libevent
44-
ac_add_options --with-system-libvpx
44+
#ac_add_options --with-system-libvpx
4545
ac_add_options --with-system-nspr
4646
ac_add_options --with-system-nss
47-
ac_add_options --with-system-webp
47+
#ac_add_options --with-system-webp
4848
4949
# Unlike with thunderbird, although using the gold linker can
5050
# save four megabytes in the installed file it does not make

gnome/libadwaita

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
export CFLAGS=-"O2"
44
export CXXFLAGS="-O2"
55

6-
URL=https://download.gnome.org/sources/libadwaita/1.2/libadwaita-1.2.0.tar.xz
6+
URL=https://download.gnome.org/sources/libadwaita/1.3/libadwaita-1.3.2.tar.xz
77
TAR=$(echo $URL | sed -r 's|(.*)/||')
88
DIR=$(echo $TAR | sed 's|.tar.*||g')
99
PACKAGE=$(echo $DIR | sed 's|-[^-]*$||g')

libdaemon

Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
#!/bin/bash
2+
3+
export CFLAGS=-"O2"
4+
export CXXFLAGS="-O2"
5+
6+
URL=https://0pointer.de/lennart/projects/libdaemon/libdaemon-0.14.tar.gz
7+
TAR=$(echo $URL | sed -r 's|(.*)/||')
8+
DIR=$(echo $TAR | sed 's|.tar.*||g')
9+
PACKAGE=$(echo $DIR | sed 's|-[^-]*$||g')
10+
11+
# Get Package
12+
13+
cd /blfs/builds
14+
wget $URL
15+
tar -xvf $TAR
16+
cd $DIR
17+
18+
# Build
19+
20+
./configure --prefix=/usr --disable-static
21+
22+
23+
make -j16
24+
25+
26+
# Install
27+
sudo make DESTDIR=/pkgs/$PACKAGE install
28+
sudo make install
29+
cd /pkgs
30+
31+
32+
33+
sudo echo "" > /pkgs/$PACKAGE/depends
34+
sudo echo "" > /pkgs/$PACKAGE/make-depends
35+
sudo tar -cvzpf $PACKAGE.tar.xz $PACKAGE
36+
sudo cp $PACKAGE.tar.xz /finished
37+
38+
39+
cd /blfs/builds
40+
sudo rm -r $DIR
41+
42+

nodejs

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,7 @@
11
#!/bin/bash
22

3-
export CFLAGS=-"O2"
4-
export CXXFLAGS="-O2"
53

6-
PKG_VER=20.1.0
4+
PKG_VER=20.2.0
75
URL=https://nodejs.org/dist/v$PKG_VER/node-v$PKG_VER.tar.xz
86
TAR=$(echo $URL | sed -r 's|(.*)/||')
97
DIR=$(echo $TAR | sed 's|.tar.*||g')

xfce4/xfce4-terminal

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
export CFLAGS=-"O2"
44
export CXXFLAGS="-O2"
5-
5+
set -e
66
URL=https://archive.xfce.org/src/apps/xfce4-terminal/1.0/xfce4-terminal-1.0.4.tar.bz2
77
TAR=$(echo $URL | sed -r 's|(.*)/||')
88
DIR=$(echo $TAR | sed 's|.tar.*||g')

0 commit comments

Comments
 (0)