summaryrefslogtreecommitdiffstats
path: root/libxfont2/MAKEPKG
diff options
context:
space:
mode:
Diffstat (limited to 'libxfont2/MAKEPKG')
-rw-r--r--libxfont2/MAKEPKG20
1 files changed, 20 insertions, 0 deletions
diff --git a/libxfont2/MAKEPKG b/libxfont2/MAKEPKG
new file mode 100644
index 0000000..87816f6
--- /dev/null
+++ b/libxfont2/MAKEPKG
@@ -0,0 +1,20 @@
1#!/bin/mkpkg
2# *** OpenTUX ***
3# description: X font handling library for server
4# url: https://xorg.freedesktop.org
5
6name=libxfont2
7version=2.0.7
8release=1
9depends=(freetype libfontenc xtrans)
10source=(https://www.x.org/releases/individual/lib/libXfont2-$version.tar.xz)
11
12build() {
13 cd libXfont2-$version
14
15 ./configure --prefix=/usr
16 make
17 make DESTDIR=$PKG install
18}
19
20# vim: filetype=sh