FreonLinux/pkgbuild/harfbuzz.build

24 lines
327 B
Plaintext
Executable File

cd $tmpdir
if [ ! -d $harfbuzzsrcdir ]; then
wget $harfbuzzmirror/$harfbuzz
tar -xf $harfbuzz
fi
mv harfbuzz-2.3.1 $harfbuzzsrcdir
cd $harfbuzzsrcdir
#./autogen.sh
./configure --prefix=$freondir \
--disable-static \
--enable-shared \
--without-graphite2
make -j20
make install
cd $tmpdir