17 lines
412 B
Bash
17 lines
412 B
Bash
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
|
|
}
|