summaryrefslogtreecommitdiff
path: root/core/file
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/file
downloadports-c82e88dd00d1b0b7fcfb4e5628d99611388cef6f.tar.gz
sync 2026-09-26 18:19 UTC
1672 files changed, 151396 insertions(+)
Diffstat (limited to 'core/file')
-rw-r--r--core/file/.footprint22
-rw-r--r--core/file/.signature6
-rw-r--r--core/file/MAKEPKG35
3 files changed, 63 insertions, 0 deletions
diff --git a/core/file/.footprint b/core/file/.footprint
new file mode 100644
index 0000000..9357730
--- /dev/null
+++ b/core/file/.footprint
@@ -0,0 +1,22 @@
+drwxr-xr-x root/root bin/
+-rwxr-xr-x root/root bin/file
+drwxr-xr-x root/root include/
+-rw-r--r-- root/root include/magic.h
+drwxr-xr-x root/root lib/
+-rwxr-xr-x root/root lib/libmagic.so.1.0.0
+lrwxrwxrwx root/root lib/libmagic.so -> libmagic.so.1.0.0
+lrwxrwxrwx root/root lib/libmagic.so.1 -> libmagic.so.1.0.0
+drwxr-xr-x root/root lib/pkgconfig/
+-rw-r--r-- root/root lib/pkgconfig/libmagic.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/man1/
+-rw-r--r-- root/root usr/share/man/man1/file.1.gz
+drwxr-xr-x root/root usr/share/man/man3/
+-rw-r--r-- root/root usr/share/man/man3/libmagic.3.gz
+drwxr-xr-x root/root usr/share/man/man4/
+-rw-r--r-- root/root usr/share/man/man4/magic.4.gz
+drwxr-xr-x root/root usr/share/man/man5/
+drwxr-xr-x root/root usr/share/misc/
+-rw-r--r-- root/root usr/share/misc/magic.mgc
diff --git a/core/file/.signature b/core/file/.signature
new file mode 100644
index 0000000..25e38e4
--- /dev/null
+++ b/core/file/.signature
@@ -0,0 +1,6 @@
+RWTZ9IduCSQ/mIXou0d5jrrWN+cgmGUWavvxnIeRej8EXTDk+oSTCG8EgvpKxu3+w7cA2rnvQ0CGKCjeswPGKJCoEv2QDz0Uwww=
+
+SHA256 (MAKEPKG) = 0f33096704a137f982414a6b7bd49d0f90660cb2ef898e2382ea3e348eaa0c9c
+SHA256 (.footprint) = 05c322c4f26cda326fe69f207bd28dc9aae527a30676844c11f4a75d710a469a
+SHA256 (file-5.48.tar.gz) = ed14656883b23a364b4057c05595d93252da9bc473d30106519519d0da141283
+SHA256 (file#5.48-1.pkg.tar.gz) = 55e969fa372694b1ecee01e500edf097c7561bd78a21929ba44016eb2765fbe3
diff --git a/core/file/MAKEPKG b/core/file/MAKEPKG
new file mode 100644
index 0000000..dc60739
--- /dev/null
+++ b/core/file/MAKEPKG
@@ -0,0 +1,35 @@
+#!/bin/mkpkg
+# description: File type identification utility
+# url: https://www.darwinsys.com/file
+
+name=file
+version=5.48
+release=1
+depends=(bzip2 xz zlib zstd)
+source=(https://astron.com/pub/$name/$name-$version.tar.gz)
+
+sha256sums=(
+ "ed14656883b23a364b4057c05595d93252da9bc473d30106519519d0da141283"
+)
+
+build() {
+ cd $name-$version
+
+ ./configure \
+ --prefix=/ \
+ --datadir=/usr/share \
+ --mandir=/usr/share/man \
+ --disable-libseccomp
+
+ make
+ make DESTDIR=$PKG install
+
+ #rm -rf $PKG/share
+}
+
+signify() {
+ untrusted comment: public key
+ RWTZ9IduCSQ/mL8337TEUinPwT92xFEUpD92hkS7IxcOnzTt9QdpohT3
+}
+
+# vim: filetype=sh