xxd-standalone: dropped

This commit is contained in:
John McQuah 2024-02-26 16:41:40 +00:00
parent dd0648fac0
commit 437b34495d
4 changed files with 0 additions and 40 deletions

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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"
}