• R/O
  • HTTP
  • SSH
  • HTTPS

Commit

Tags
No Tags

Frequently used words (click to add to your profile)

javac++androidlinuxc#windowsobjective-ccocoa誰得qtpythonphprubygameguibathyscaphec計画中(planning stage)翻訳omegatframeworktwitterdomtestvb.netdirectxゲームエンジンbtronarduinopreviewer

Commit MetaInfo

Revisiónbbe7eb68fe2d58eea87b5d9dc38d66823a2b073f (tree)
Tiempo2021-12-22 13:24:05
Autormatsuand <30614168+matsuand@user...>
Commitermatsuand

Log Message

[BLFS] Update libxkbcommon-1.3.1.

Cambiar Resumen

Diferencia incremental

--- a/BLFS/libxkbcommon.sh
+++ b/BLFS/libxkbcommon.sh
@@ -3,7 +3,7 @@
33 . ./_blfsset.sh
44
55 APPNAME=libxkbcommon
6-VER=0.3.2
6+VER=1.3.1
77 TARGET=$APPNAME-$VER
88 TARGETBALL=$DLD/$TARGET.tar.xz
99 TARGETDIR=$TARGET
@@ -23,21 +23,25 @@ TimeStart
2323
2424 cd $TARGETDIR
2525
26+mkdir build
27+cd build
28+
2629 Configuring
27-./configure --prefix=/usr \
30+meson --prefix=/usr --buildtype=release -Denable-docs=false .. \
2831 1> $LOG/$TARGET.1_conf.log 2>&1 || exit 1
2932
3033 Making
31-make \
34+ninja \
3235 1> $LOG/$TARGET.2_make.log 2>&1 || exit 1
3336
3437 Installing
35-paco -p $TARGET "make install" \
38+porg -lp $TARGET "\
39+ninja install" \
3640 1> $LOG/$TARGET.3_install.log 2>&1 || exit 1
3741
3842 TimeEnd
3943
40-cd ..
44+cd ../..
4145 RemoveSrcDir
42-PacoingDone
46+PorgingDone
4347