FreonLinux/pkgbuild/xcb.build

48 lines
721 B
Plaintext
Executable File

cd $tmpdir
# Grab latest sources for freetype
if [ ! -d $xcbsrcdir ]; then
wget $xcbmirror/$xcb
tar -xf $xcb
fi
cd $xcbsrcdir
./configure --prefix=$freondir --disable-static
make -j$corecount
make install
cd $tmpdir
# Grab latest sources for freetype
if [ ! -d $xcbutilsrcdir ]; then
wget $xcbmirror/$xcbutil
tar -xf $xcbutil
fi
cd $xcbutilsrcdir
./configure --prefix=$freondir --disable-static
make -j$corecount
make install
cd $tmpdir
# Grab latest sources for freetype
if [ ! -d $xcbprotosrcdir ]; then
wget $xcbmirror/$xcbproto
tar -xf $xcbproto
fi
cd $xcbprotosrcdir
./configure --prefix=$freondir --disable-static
make -j$corecount
make install