summaryrefslogtreecommitdiffstats
path: root/libxft/MAKEPKG
diff options
context:
space:
mode:
authorzorz <zorz@opentux.org>2026-02-27 17:37:23 +0200
committerzorz <zorz@opentux.org>2026-02-27 17:37:23 +0200
commitde196c8550dfd3317043fcc71de1506ac076e14f (patch)
tree1e59293fa24652b1f7c96a95d522afd0590589bc /libxft/MAKEPKG
parent83404b410d422331951d406323962f314f9546ee (diff)
downloadxorg-de196c8550dfd3317043fcc71de1506ac076e14f.tar.gz
xorg-de196c8550dfd3317043fcc71de1506ac076e14f.tar.xz
Initial commit: xorg/x11 ports
Diffstat (limited to 'libxft/MAKEPKG')
-rw-r--r--libxft/MAKEPKG20
1 files changed, 20 insertions, 0 deletions
diff --git a/libxft/MAKEPKG b/libxft/MAKEPKG
new file mode 100644
index 0000000..33f9056
--- /dev/null
+++ b/libxft/MAKEPKG
@@ -0,0 +1,20 @@
1#!/bin/mkpkg
2# *** OpenTUX ***
3# description: X font rendering library
4# url: https://xorg.freedesktop.org
5
6name=libxft
7version=2.3.9
8release=1
9depends=(libxrender fontconfig freetype)
10source=(https://www.x.org/releases/individual/lib/libXft-$version.tar.xz)
11
12build() {
13 cd libXft-$version
14
15 ./configure --prefix=/usr
16 make
17 make DESTDIR=$PKG install
18}
19
20# vim: filetype=sh