desktop/src/bdftopcf/pkg.sh

17 lines
412 B
Bash
Raw Normal View History

2024-08-10 23:17:03 +00:00
NAME="bdftopcf"
DESC="Convert X font from Bitmap Distribution Format to Portable Compiled Format"
VERSION="1.1.1"
FILES=("https://www.x.org/pub/individual/util/bdftopcf-$VERSION.tar.xz")
HASHES=("e09b61567ab4a4d534119bba24eddfb1")
DEPENDS=()
PACKAGE() {
tar xf $NAME-$VERSION.tar.xz
cd $NAME-$VERSION
./configure $XORG_CONFIG
make && make DESTDIR=${ROOTDIR} install
cd .. && rm -rf $NAME-$VERSION
}