mirror of
https://codeberg.org/kiss-community/repo
synced 2024-12-22 15:20:06 -07:00
rsync: drop package
This commit is contained in:
parent
f35432f705
commit
9898c8b43c
@ -1,19 +0,0 @@
|
||||
#!/bin/sh -e
|
||||
|
||||
# Swap to awk script instead of perl script
|
||||
# for building rsync. See files/mkproto.awk.
|
||||
sed 's/perl/awk -f/;s/mkproto.pl/mkproto.awk/' Makefile.in > _
|
||||
mv -f _ Makefile.in
|
||||
|
||||
export CFLAGS="-static $CFLAGS"
|
||||
|
||||
./configure \
|
||||
--prefix=/usr \
|
||||
--with-included-popt \
|
||||
--disable-xxhash \
|
||||
--disable-zstd \
|
||||
--disable-lz4 \
|
||||
--without-included-zlib
|
||||
|
||||
make
|
||||
make install
|
@ -1,2 +0,0 @@
|
||||
becc3c504ceea499f4167a260040ccf4d9f2ef9499ad5683c179a697146ce50e
|
||||
301240aecba5b8fbda8310c841ef61e3c1f312a55378f6079f8d65ae1bd811f2
|
@ -1 +0,0 @@
|
||||
zlib make
|
@ -1,39 +0,0 @@
|
||||
#!/usr/bin/awk -f
|
||||
|
||||
BEGIN {
|
||||
while ((getline i < "proto.h") > 0) old_protos = old_protos ? old_protos "\n" i : i
|
||||
protos = "/* This file is automatically generated with \"make proto\". DO NOT EDIT */\n"
|
||||
}
|
||||
|
||||
inheader {
|
||||
protos = protos "\n" ((inheader = /\)[ \t]*$/ ? 0 : 1) ? $0 : $0 ";")
|
||||
next
|
||||
}
|
||||
|
||||
/^FN_(LOCAL|GLOBAL)_[^(]+\([^,()]+/ {
|
||||
local = /^FN_LOCAL/
|
||||
gsub(/^FN_(LOC|GLOB)AL_|,.*$/, "")
|
||||
sub(/^BOOL\(/, "BOOL ")
|
||||
sub(/^CHAR\(/, "char ")
|
||||
sub(/^INTEGER\(/, "int ")
|
||||
sub(/^STRING\(/, "char *")
|
||||
protos = protos "\n" $0 (local ? "(int module_id);" : "(void);")
|
||||
next
|
||||
}
|
||||
|
||||
/^static|^extern|;/||!/^[A-Za-z][A-Za-z0-9_]* / { next }
|
||||
|
||||
/\(.*\)[ \t]*$/ {
|
||||
protos = protos "\n" $0 ";"
|
||||
next
|
||||
}
|
||||
|
||||
/\(/ {
|
||||
inheader = 1
|
||||
protos = protos "\n" $0
|
||||
}
|
||||
|
||||
END {
|
||||
if (old_protos != protos) print protos > "proto.h"
|
||||
print "" > "proto.h-tstamp"
|
||||
}
|
@ -1,2 +0,0 @@
|
||||
https://download.samba.org/pub/rsync/src/rsync-VERSION.tar.gz
|
||||
files/mkproto.awk
|
@ -1 +0,0 @@
|
||||
3.2.3 1
|
Loading…
Reference in New Issue
Block a user