fix: webkitgtk build and depend issues
This commit is contained in:
@ -1,7 +1,7 @@
|
||||
NAME="xinit"
|
||||
DESC="Usable script to start the xserver"
|
||||
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")
|
||||
DEPENDS=(
|
||||
"libx11" "xauth"
|
||||
@ -9,14 +9,19 @@ DEPENDS=(
|
||||
)
|
||||
|
||||
PACKAGE() {
|
||||
tar xf $NAME-$VERSION.tar.xz
|
||||
cd $NAME-$VERSION
|
||||
tar xf "${NAME}-${VERSION}.tar.xz"
|
||||
cd "${NAME}-${VERSION}"
|
||||
|
||||
./configure $XORG_CONFIG --with-xinitdir=/etc/X11/app-defaults
|
||||
make && make DESTDIR=${ROOTDIR} install && ldconfig
|
||||
./configure $XORG_CONFIG --with-xinitdir="/etc/X11/app-defaults"
|
||||
make
|
||||
make DESTDIR="${ROOTDIR}" install
|
||||
|
||||
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
|
||||
}
|
||||
|
Reference in New Issue
Block a user