#!/bin/bash
PKG=/tmp/khmer-pkg
rm -Rf $PKG
mkdir -p $PKG
CWD="$(pwd)"

wget -c "http://freefr.dl.sourceforge.net/project/khmer/Fonts%20-%20KhmerOS/KhmerOS%20Fonts%205.0-%20LGPL%20Licence/All_KhmerOS_5.0.zip"
unzip All_KhmerOS_5.0.zip
mv "All_KhmerOS_5.0/KhmerOS .ttf" "All_KhmerOS_5.0/KhmerOS.ttf"
mkdir -p $PKG/install
cp doinst.sh $PKG/install
mkdir -p $PKG/usr/share/fonts/TTF/
cp All_KhmerOS_5.0/* $PKG/usr/share/fonts/TTF/
chmod a-x $PKG/usr/share/fonts/TTF/*
cd $PKG
makepkg -c y /tmp/khmer-font-5.0-noarch-1.txz

cd "$CWD"
rm -Rf All_KhmerOS_5.0/
