fix: webkitgtk build and depend issues
This commit is contained in:
parent
1fedbf510f
commit
947582432e
@ -5,7 +5,11 @@ VERSION="8.1.1"
|
|||||||
FILES=("https://github.com/harfbuzz/harfbuzz/releases/download/${VERSION}/harfbuzz-${VERSION}.tar.xz")
|
FILES=("https://github.com/harfbuzz/harfbuzz/releases/download/${VERSION}/harfbuzz-${VERSION}.tar.xz")
|
||||||
HASHES=("f0040d0fc02cf94cac9f46a94c44c6de")
|
HASHES=("f0040d0fc02cf94cac9f46a94c44c6de")
|
||||||
|
|
||||||
DEPENDS=("gobject-introspection" "glib" "icu" "freetype" "cairo")
|
DEPENDS=("freetype" "glib" "icu" "glibc" "graphite")
|
||||||
|
BUILD=(
|
||||||
|
"cairo" "gobject-introspection" "meson"
|
||||||
|
"python3" "gtk-doc" "pypa-setuptools"
|
||||||
|
)
|
||||||
|
|
||||||
PACKAGE() {
|
PACKAGE() {
|
||||||
tar xf "${NAME}-${VERSION}.tar.xz"
|
tar xf "${NAME}-${VERSION}.tar.xz"
|
||||||
|
@ -7,12 +7,12 @@ HASHES=("9cf27d88b55e5b8168f4835b17ea6fd0")
|
|||||||
|
|
||||||
DEPENDS=(
|
DEPENDS=(
|
||||||
"cairo" "gst-plugins-base" "gst-plugins-bad"
|
"cairo" "gst-plugins-base" "gst-plugins-bad"
|
||||||
"gtk4" "gtk3" "icu" "lcms2" "libgudev" "libsecret"
|
"gtk4" "icu" "lcms2" "libgudev" "libsecret"
|
||||||
"libsoup" "libtasn1" "mesa" "openjpeg"
|
"libsoup" "libtasn1" "mesa" "openjpeg"
|
||||||
"sqlite" "unifdef" "which" "wpebackend-fdo"
|
"sqlite" "unifdef" "which" "wpebackend-fdo"
|
||||||
"bubblewrap" "enchant" "geoclue" "libwebp"
|
"bubblewrap" "enchant" "geoclue" "libwebp"
|
||||||
"hicolor-icon-theme" "libavif" "xdg-dbus-proxy"
|
"hicolor-icon-theme" "libavif" "xdg-dbus-proxy"
|
||||||
"harfbuzz" "woff2" "libwpe" "gtk4"
|
"harfbuzz" "woff2" "libwpe"
|
||||||
)
|
)
|
||||||
BUILD=(
|
BUILD=(
|
||||||
"cmake" "gobject-introspection" "glib"
|
"cmake" "gobject-introspection" "glib"
|
||||||
@ -26,6 +26,11 @@ PACKAGE() {
|
|||||||
mkdir -pv build
|
mkdir -pv build
|
||||||
cd build
|
cd build
|
||||||
|
|
||||||
|
# prevent optimization issues
|
||||||
|
CFLAGS="$(echo "${CFLAGS}" | sed 's/-O3/-O1/g' | sed 's/-O2/-O1/g')"
|
||||||
|
CXXFLAGS="$(echo "${CXXFLAGS}" | sed 's/-O3/-O1/g' | sed 's/-O2/-O1/g')"
|
||||||
|
CPPFLAGS="$(echo "${CPPFLAGS}" | sed 's/-O3/-O1/g' | sed 's/-O2/-O1/g')"
|
||||||
|
|
||||||
cmake -DCMAKE_BUILD_TYPE=Release \
|
cmake -DCMAKE_BUILD_TYPE=Release \
|
||||||
-DCMAKE_INSTALL_PREFIX=/usr \
|
-DCMAKE_INSTALL_PREFIX=/usr \
|
||||||
-DCMAKE_SKIP_RPATH=ON \
|
-DCMAKE_SKIP_RPATH=ON \
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
NAME="xinit"
|
NAME="xinit"
|
||||||
DESC="Usable script to start the xserver"
|
DESC="Usable script to start the xserver"
|
||||||
VERSION="1.4.2"
|
VERSION="1.4.2"
|
||||||
FILES=("https://www.x.org/pub/individual/app/xinit-$VERSION.tar.xz")
|
FILES=("https://www.x.org/pub/individual/app/xinit-${VERSION}.tar.xz")
|
||||||
HASHES=("0e9a1b9a82b84ab229c709c0f939c113")
|
HASHES=("0e9a1b9a82b84ab229c709c0f939c113")
|
||||||
DEPENDS=(
|
DEPENDS=(
|
||||||
"libx11" "xauth"
|
"libx11" "xauth"
|
||||||
@ -9,14 +9,19 @@ DEPENDS=(
|
|||||||
)
|
)
|
||||||
|
|
||||||
PACKAGE() {
|
PACKAGE() {
|
||||||
tar xf $NAME-$VERSION.tar.xz
|
tar xf "${NAME}-${VERSION}.tar.xz"
|
||||||
cd $NAME-$VERSION
|
cd "${NAME}-${VERSION}"
|
||||||
|
|
||||||
./configure $XORG_CONFIG --with-xinitdir=/etc/X11/app-defaults
|
./configure $XORG_CONFIG --with-xinitdir="/etc/X11/app-defaults"
|
||||||
make && make DESTDIR=${ROOTDIR} install && ldconfig
|
make
|
||||||
|
make DESTDIR="${ROOTDIR}" install
|
||||||
|
|
||||||
sed -i '175s/.*/ xserverauthfile=`mktemp -p \/tmp serverauth.XXXXXXXXXX`/' \
|
sed -i '175s/.*/ xserverauthfile=`mktemp -p \/tmp serverauth.XXXXXXXXXX`/' \
|
||||||
"$ROOTDIR/usr/bin/startx"
|
"${ROOTDIR}/usr/bin/startx"
|
||||||
|
|
||||||
cd .. && rm -rf $NAME-$VERSION
|
cd .. && rm -rf "${NAME}-${VERSION}"
|
||||||
|
}
|
||||||
|
|
||||||
|
INSTALL() {
|
||||||
|
ldconfig
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user