summaryrefslogtreecommitdiff
path: root/core/popt
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 /core/popt
downloadports-c82e88dd00d1b0b7fcfb4e5628d99611388cef6f.tar.gz
sync 2026-09-26 18:19 UTC
1672 files changed, 151396 insertions(+)
Diffstat (limited to 'core/popt')
-rw-r--r--core/popt/.footprint13
-rw-r--r--core/popt/.signature6
-rw-r--r--core/popt/MAKEPKG30
3 files changed, 49 insertions, 0 deletions
diff --git a/core/popt/.footprint b/core/popt/.footprint
new file mode 100644
index 0000000..de85318
--- /dev/null
+++ b/core/popt/.footprint
@@ -0,0 +1,13 @@
+drwxr-xr-x root/root include/
+-rw-r--r-- root/root include/popt.h
+drwxr-xr-x root/root lib/
+-rwxr-xr-x root/root lib/libpopt.so.0.0.2
+lrwxrwxrwx root/root lib/libpopt.so -> libpopt.so.0.0.2
+lrwxrwxrwx root/root lib/libpopt.so.0 -> libpopt.so.0.0.2
+drwxr-xr-x root/root lib/pkgconfig/
+-rw-r--r-- root/root lib/pkgconfig/popt.pc
+drwxr-xr-x root/root usr/
+drwxr-xr-x root/root usr/share/
+drwxr-xr-x root/root usr/share/man/
+drwxr-xr-x root/root usr/share/man/man3/
+-rw-r--r-- root/root usr/share/man/man3/popt.3.gz
diff --git a/core/popt/.signature b/core/popt/.signature
new file mode 100644
index 0000000..b1e3d0c
--- /dev/null
+++ b/core/popt/.signature
@@ -0,0 +1,6 @@
+RWTZ9IduCSQ/mGtgpkXCbE8xW3SJ1VsVSinNuZWQT3gnCkQwQ9goZlhva+XjDeSGD7d2UCG62DRZukrNIaD8e0g14D16FXqk3Q4=
+
+SHA256 (MAKEPKG) = 0bf186d87341c06a0336bf08a72b6bae6175d5852ba5e5988d0194a6a6fd3621
+SHA256 (.footprint) = 14bf5ace69cfdb9282cd7d7457856e9d024d6dd83c049685cf4c3988c7291c08
+SHA256 (popt-1.19.tar.gz) = c25a4838fc8e4c1c8aacb8bd620edb3084a3d63bf8987fdad3ca2758c63240f9
+SHA256 (popt#1.19-1.pkg.tar.gz) = e2b37e903b90c07db9cef181e24987b4431acc28e388e8d53ae846fb81bd52d2
diff --git a/core/popt/MAKEPKG b/core/popt/MAKEPKG
new file mode 100644
index 0000000..1de8df2
--- /dev/null
+++ b/core/popt/MAKEPKG
@@ -0,0 +1,30 @@
+#!/bin/mkpkg
+# description: Command line option parsing library
+# url: https://github.com/rpm-software-management/popt
+
+name=popt
+version=1.19
+release=1
+source=(https://ftp.osuosl.org/pub/rpm/popt/releases/popt-1.x/$name-$version.tar.gz)
+
+sha256sums=(
+ "c25a4838fc8e4c1c8aacb8bd620edb3084a3d63bf8987fdad3ca2758c63240f9"
+)
+
+build() {
+ cd $name-$version
+ ./configure \
+ --prefix=/ \
+ --mandir=/usr/share/man \
+ --disable-static \
+ --disable-nls
+ make
+ make install DESTDIR=$PKG
+}
+
+signify() {
+ untrusted comment: public key
+ RWTZ9IduCSQ/mL8337TEUinPwT92xFEUpD92hkS7IxcOnzTt9QdpohT3
+}
+
+# vim: filetype=sh