summaryrefslogtreecommitdiff
path: root/libs/libyaml
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/libyaml
downloadports-c82e88dd00d1b0b7fcfb4e5628d99611388cef6f.tar.gz
sync 2026-09-26 18:19 UTC
1672 files changed, 151396 insertions(+)
Diffstat (limited to 'libs/libyaml')
-rw-r--r--libs/libyaml/.footprint9
-rw-r--r--libs/libyaml/.signature6
-rw-r--r--libs/libyaml/MAKEPKG28
3 files changed, 43 insertions, 0 deletions
diff --git a/libs/libyaml/.footprint b/libs/libyaml/.footprint
new file mode 100644
index 0000000..ecefece
--- /dev/null
+++ b/libs/libyaml/.footprint
@@ -0,0 +1,9 @@
+drwxr-xr-x root/root usr/
+drwxr-xr-x root/root usr/include/
+-rw-r--r-- root/root usr/include/yaml.h
+drwxr-xr-x root/root usr/lib/
+-rwxr-xr-x root/root usr/lib/libyaml-0.so.2.0.9
+lrwxrwxrwx root/root usr/lib/libyaml-0.so.2 -> libyaml-0.so.2.0.9
+lrwxrwxrwx root/root usr/lib/libyaml.so -> libyaml-0.so.2.0.9
+drwxr-xr-x root/root usr/lib/pkgconfig/
+-rw-r--r-- root/root usr/lib/pkgconfig/yaml-0.1.pc
diff --git a/libs/libyaml/.signature b/libs/libyaml/.signature
new file mode 100644
index 0000000..4d7f68b
--- /dev/null
+++ b/libs/libyaml/.signature
@@ -0,0 +1,6 @@
+RWTZ9IduCSQ/mEK/bJFQc5NZDOyCoZSzQa8rlYt64kxGInKoHWxW6uTfYmL1UeuJhPk45rkEQiKGlEhGBi1sF2ZeP8dBr/OAOgs=
+
+SHA256 (MAKEPKG) = 64d314a0b5038e88ba1a76ba02f7b1ce8a57a5d065613a7e62245153cd63380f
+SHA256 (.footprint) = 4981c9880167eda76d8e113605512f179ae60299d1788608066a02c45b59df3b
+SHA256 (yaml-0.2.5.tar.gz) = c642ae9b75fee120b2d96c712538bd2cf283228d2337df2cf2988e3c02678ef4
+SHA256 (libyaml#0.2.5-1.pkg.tar.gz) = cc9f297caea02e7d135324011420d6749ff101e84cc6a55ac7015a404e9f4d40
diff --git a/libs/libyaml/MAKEPKG b/libs/libyaml/MAKEPKG
new file mode 100644
index 0000000..d90b6e5
--- /dev/null
+++ b/libs/libyaml/MAKEPKG
@@ -0,0 +1,28 @@
+#!/bin/mkpkg
+# description: YAML 1.1 parser and emitter C library
+# url: https://pyyaml.org/wiki/LibYAML
+
+name=libyaml
+version=0.2.5
+release=1
+depends=()
+source=(https://pyyaml.org/download/libyaml/yaml-$version.tar.gz)
+sha256sums=(
+ "c642ae9b75fee120b2d96c712538bd2cf283228d2337df2cf2988e3c02678ef4"
+)
+
+build() {
+ cd yaml-$version
+ ./configure \
+ --prefix=/usr \
+ --disable-static
+ make
+ make DESTDIR=$PKG install
+}
+
+signify() {
+ untrusted comment: public key
+ RWTZ9IduCSQ/mL8337TEUinPwT92xFEUpD92hkS7IxcOnzTt9QdpohT3
+}
+
+# vim: filetype=sh