FreonLinux/pkgbuild/png16.build

18 lines
251 B
Plaintext
Executable File

cd $tmpdir
# Grab latest sources for freetype
if [ ! -d $png16srcdir ]; then
wget $png16mirror/$png16
tar -xf $png16
fi
cd $png16srcdir
./configure --prefix=$freondir --disable-static
make -j$corecount
make install
cd $tmpdir