diff options
| author | Laurent Bercot <ska-skaware@skarnet.org> | 2024-01-30 20:51:38 +0000 |
|---|---|---|
| committer | Laurent Bercot <ska@appnovation.com> | 2024-01-30 20:51:38 +0000 |
| commit | 21d51f7e0a639a3224ffc45dc3c06854decf1d45 (patch) | |
| tree | 87c4a36f66510e79d7ec8315361bb8bbbb5767f5 /package | |
| download | apaste-21d51f7e0a639a3224ffc45dc3c06854decf1d45.tar.gz | |
Initial commit
Signed-off-by: Laurent Bercot <ska@appnovation.com>
Diffstat (limited to 'package')
| -rw-r--r-- | package/deps-build | 2 | ||||
| -rw-r--r-- | package/deps.mak | 16 | ||||
| -rw-r--r-- | package/info | 4 | ||||
| -rw-r--r-- | package/modes | 3 | ||||
| -rw-r--r-- | package/targets.mak | 7 |
5 files changed, 32 insertions, 0 deletions
diff --git a/package/deps-build b/package/deps-build new file mode 100644 index 0000000..c4bd95c --- /dev/null +++ b/package/deps-build @@ -0,0 +1,2 @@ +/package/prog/skalibs +/package/net/s6-networking diff --git a/package/deps.mak b/package/deps.mak new file mode 100644 index 0000000..3f6192a --- /dev/null +++ b/package/deps.mak @@ -0,0 +1,16 @@ +# +# This file has been generated by tools/gen-deps.sh +# + +src/client/apaste.o src/client/apaste.lo: src/client/apaste.c src/include/apaste/config.h +src/client/apastec.o src/client/apastec.lo: src/client/apastec.c src/include-local/apaste-common.h src/include/apaste/config.h src/client/apastec.h +src/client/send_file.o src/client/send_file.lo: src/client/send_file.c +src/server/apasted.o src/server/apasted.lo: src/server/apasted.c src/include-local/apaste-common.h src/include/apaste/config.h + +apaste: EXTRA_LIBS := -lskarnet +apaste: src/client/apaste.o +apastec: EXTRA_LIBS := -lskarnet ${SOCKET_LIB} ${SYSCLOCK_LIB} +apastec: src/client/apastec.o src/client/send_file.o +apasted: EXTRA_LIBS := -lskarnet ${SOCKET_LIB} ${SYSCLOCK_LIB} +apasted: src/server/apasted.o +INTERNAL_LIBS := diff --git a/package/info b/package/info new file mode 100644 index 0000000..333079b --- /dev/null +++ b/package/info @@ -0,0 +1,4 @@ +package=apaste +version=0.0.1.0 +category=web +package_macro_name=APASTE diff --git a/package/modes b/package/modes new file mode 100644 index 0000000..4e5f807 --- /dev/null +++ b/package/modes @@ -0,0 +1,3 @@ +apaste 0755 +apastec 0755 +apasted 0755 diff --git a/package/targets.mak b/package/targets.mak new file mode 100644 index 0000000..1c4f30e --- /dev/null +++ b/package/targets.mak @@ -0,0 +1,7 @@ +BIN_TARGETS := \ +apaste \ +apastec \ +apasted + +LIBEXEC_TARGETS := + |
