diff options
author | davidovski <david@davidovski.xyz> | 2023-05-17 17:01:27 +0100 |
---|---|---|
committer | davidovski <david@davidovski.xyz> | 2023-05-17 17:01:27 +0100 |
commit | 0d37a1ef234c38b27faba43bc3a22f985d311deb (patch) | |
tree | dde8df9f508e7323c3d7df599ceade7705c40acd /repo/bdftopcf/bdftopcf.xibuild | |
parent | f29d569cd33a73da5ad675f43a34ad53c5cc9bc6 (diff) |
Remove all firmware
Diffstat (limited to 'repo/bdftopcf/bdftopcf.xibuild')
-rw-r--r-- | repo/bdftopcf/bdftopcf.xibuild | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/repo/bdftopcf/bdftopcf.xibuild b/repo/bdftopcf/bdftopcf.xibuild new file mode 100644 index 0000000..7470e56 --- /dev/null +++ b/repo/bdftopcf/bdftopcf.xibuild @@ -0,0 +1,23 @@ +#!/bin/sh + +NAME="bdftopcf" +DESC="X.Org font utility" + +MAKEDEPS="libxfont util-macros xorgproto" + +PKG_VER=1.1.1 +SOURCE="https://www.x.org/releases/individual/util/bdftopcf-$PKG_VER.tar.xz" + +build() { + ./configure \ + --prefix=/usr \ + --sysconfdir=/etc \ + --mandir=/usr/share/man \ + --localstatedir=/var + make +} + +package() { + make DESTDIR="$PKG_DEST" install +} + |