diff --git a/xxd-standalone/.footprint b/xxd-standalone/.footprint deleted file mode 100644 index 1e724a2..0000000 --- a/xxd-standalone/.footprint +++ /dev/null @@ -1,7 +0,0 @@ -drwxr-xr-x root/root usr/ -drwxr-xr-x root/root usr/bin/ --rwxr-xr-x root/root usr/bin/xxd -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/xxd.1.gz diff --git a/xxd-standalone/.signature b/xxd-standalone/.signature deleted file mode 100644 index 5757bbf..0000000 --- a/xxd-standalone/.signature +++ /dev/null @@ -1,7 +0,0 @@ -untrusted comment: verify with /etc/ports/jmq.pub -RWTTPlFarK9CxM6cHbbOH9NHFXcrGRW8snEqYR6+oMJH44Mu5Mzp6bL4hari/jJXo03MR+l35FbNTH8HIX3MC4u7K22dpx9Qlgs= -SHA256 (Pkgfile) = e30c00ba9f88abcf6e42b468d213ea2f4b9eca1d2101ddc5d2f36f5f7df6923c -SHA256 (.footprint) = de26d47750380345574df1f5ff8a43a4da59cdb810bf5611dd25f38c1119f5e0 -SHA256 (xxd-9.0.1396.c) = d38c7ebb9ed6d2ed080a9936d6db79bce463c110af95837ddef90cc3f0d4aba0 -SHA256 (xxd-9.0.1396.1) = b7822e307fe41854658d967571e6a52d792afef70508bedd0c665088e2afa8b0 -SHA256 (xxd-Makefile) = 96d7229490da56fbf6cae3791407238636b2979e1f607e535f55ec26068303c5 diff --git a/xxd-standalone/.watch b/xxd-standalone/.watch deleted file mode 100755 index e3a969b..0000000 --- a/xxd-standalone/.watch +++ /dev/null @@ -1,5 +0,0 @@ -#!/bin/sh - -curl -s "https://github.com/vim/vim/tags" \ - | awk '/archive\/refs\/tags/ {$0=gensub(/.*archive\/refs\/tags\/v(.+)\.zip.*/,"\\1",1); print;}' \ - | head -n 1 diff --git a/xxd-standalone/Pkgfile b/xxd-standalone/Pkgfile deleted file mode 100644 index deb4de5..0000000 --- a/xxd-standalone/Pkgfile +++ /dev/null @@ -1,21 +0,0 @@ -# Description: hexdump utility from vim -# URL: https://www.vim.org/ -# Maintainer: John McQuah, jmcquah at disroot dot org -# Depends on: - -name=xxd-standalone -version=9.0.1396 -release=1 -source=(https://raw.githubusercontent.com/vim/vim/v$version/src/xxd/xxd.c -https://raw.githubusercontent.com/vim/vim/v$version/runtime/doc/xxd.1 -https://raw.githubusercontent.com/vim/vim/v$version/src/xxd/Makefile) -renames=(xxd-$version.c xxd-$version.1 xxd-Makefile) - -build() { - mv xxd-$version.c xxd.c - make -f xxd-Makefile - - mkdir -p $PKG/usr/bin $PKG/usr/share/man/man1 - install -m755 xxd "$PKG/usr/bin/xxd" - install -m644 xxd-$version.1 "$PKG/usr/share/man/man1/xxd.1" -}