summaryrefslogtreecommitdiff
path: root/libs/libx11/MAKEPKG
diff options
context:
space:
mode:
authorrawnix ports <ports@rawnix.org>2026-09-26 18:19:05 +0000
committerrawnix ports <ports@rawnix.org>2026-09-26 18:19:05 +0000
commitc82e88dd00d1b0b7fcfb4e5628d99611388cef6f (patch)
tree56d864b5a5c6c145edd96178ae219a8f90e191a6 /libs/libx11/MAKEPKG
downloadports-c82e88dd00d1b0b7fcfb4e5628d99611388cef6f.tar.gz
sync 2026-09-26 18:19 UTC
1672 files changed, 151396 insertions(+)
Diffstat (limited to 'libs/libx11/MAKEPKG')
-rw-r--r--libs/libx11/MAKEPKG31
1 files changed, 31 insertions, 0 deletions
diff --git a/libs/libx11/MAKEPKG b/libs/libx11/MAKEPKG
new file mode 100644
index 0000000..913bde1
--- /dev/null
+++ b/libs/libx11/MAKEPKG
@@ -0,0 +1,31 @@
+#!/bin/mkpkg
+# description: X client library
+# url: https://xorg.freedesktop.org
+
+name=libx11
+version=1.8.13
+release=1
+depends=(libxcb xtrans)
+source=(https://www.x.org/releases/individual/lib/libX11-$version.tar.xz)
+
+sha256sums=(
+ "69606f485c2c07c14ef64f75b7bb326d48587af33795d9ab3e607c0b5f94f11c"
+)
+
+build() {
+ cd libX11-$version
+
+ ./configure \
+ --prefix=/usr \
+ --disable-specs
+
+ make
+ make DESTDIR=$PKG install
+}
+
+signify() {
+ untrusted comment: public key
+ RWTZ9IduCSQ/mL8337TEUinPwT92xFEUpD92hkS7IxcOnzTt9QdpohT3
+}
+
+# vim: filetype=sh