Subversion Repositories SvarDOS

Compare Revisions

Ignore whitespace Rev 727 → Rev 759

/pkg/tags/20220216/Makefile
35,8 → 35,8
utf8tocp 857 pkg_tr.txt > tr.txt
utf8tocp maz pkg_pl.txt > pl.txt
..\svarlang.lib\tlumacz en de fr dk si tr pl
move out.lng ..\pkg.lng
move deflang.c ..
move /y out.lng ..\pkg.lng
move /y deflang.c ..
del ??.txt
cd ..
wcc $(CFLAGS) deflang.c
/pkg/tags/20220216/main.c
30,6 → 30,7
#include <string.h> /* strcasecmp() */
 
#include "svarlang.lib/svarlang.h"
#include "helpers.h"
#include "kprintf.h"
#include "libunzip.h"
#include "pkginst.h"
113,6 → 114,7
}
memcpy(pkgname, file + lastpathdelim + 1, t);
pkgname[t] = 0;
strtolower(pkgname); /* package name must be all lower-case for further file matching in the zip file */
/* prepare the zip file and install it */
zipfileidx = pkginstall_preparepackage(pkgname, file, flags, &zipfilefd, dosdir, dirlist);
if (zipfileidx != NULL) {
/pkg/tags/20220216/pkg.lsm
1,2 → 1,2
version: 20220215
version: 20220216
description: SvarDOS package manager installs, removes and updates packages
/pkg/tags/20220216/version.h
4,7 → 4,7
#ifndef COMMON_H_SENTINEL
#define COMMON_H_SENTINEL
 
#define PVER "20220215"
#define PVER "20220216"
#define PDATE "2012-2022"
 
#endif