-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfdnpkg16.oem
More file actions
181 lines (140 loc) · 6.37 KB
/
Copy pathfdnpkg16.oem
File metadata and controls
181 lines (140 loc) · 6.37 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
##############################################################################
# #
# This is the configuration file of FDNPKG. #
# #
# It is located in %DOSDIR%\BIN\FDNPKG.CFG by default, but you are #
# encouraged to copy it to another location, and point the FDNPKG.CFG #
# environment variable to it. #
# eg. SET FDNPKG.CFG=C:\MYDIR\FDNPKG.CFG #
# #
# Otherwise you will loose your custom settings (if any) when FDNPKG will be #
# updated to a newer version. #
# #
##############################################################################
##############################################################################
# The maximum time FDNPKG can keep its internal package database cache.
# The value must be provided in seconds, in a range of 0..1209600.
# Default: 7200
#
maxcachetime 7200
##############################################################################
# Whether or not to install sources (when available) along with binaries.
# This can be overriden via command line at any time.
# Possible values:
# 0 - don't install sources by default
# 1 - install sources by default
#
installsources 0
##############################################################################
# Whether or not to install "link" files. Some packages need to be callable
# from within the %PATH%. Such packages come with a 'link' file that is
# supposed to be placed in a directory soemwhere in the %PATH% (see the 'dir
# link' directive later in this configuration file for setting the exact
# location).
# If you already use some kind of similar mechanism and you do not wish to
# duplicate it, then you can set tell FDNPKG to skip links installation.
# Possible values:
# 0 - installs links for packages that have them
# 1 - skip link files
#
skiplinks 0
##############################################################################
# FDNPKG can remap drive letters during software installation. This is a hack
# that is most probably useless in all production environments, but can be
# used by OS installers during install time (when the current drives letters
# do not match letters drive will obtain once the system is installed). This
# parameter takes an even-sized string of drive pairs. Let's consider this:
#
# mapdrives cddx
#
# The above setting means "anything that would normally be installed to C:
# needs to be redirected to D:, while everything that would be installed to
# D: is to be redirected to X:". FDNPKG not only redirects files during
# installation of packages, but also pretends the files were actually
# installed on the original drive - which means the packages will be fully
# functional (including upgrades and removals) on the target system.
#mapdrives
##############################################################################
# If your network environment requires to use a proxy, you can define it here,
# as well as the port to use.
# Note: the proxy will be used only for HTTP repositories.
# Example: http_proxy proxy.example.com
# http_proxyport 8080
#
#http_proxy 10.2.3.4
#http_proxyport 8080
##############################################################################
# Below you can edit/add custom path to store different kinds of applications
# in different places on your disk. Use only absolute paths here! Note, that
# you can use environment variables, if you need to.
#
# directory for development tools (mostly compilers)
dir devel c:\devel
# directory for drivers
dir drivers %DOSDIR%\drivers
# where games should get installed
dir games c:\games
# this folder contains sources to program that comes with their source files
dir source %DOSDIR%\source
# user programs... (only those that are not incorporated in FreeDOS of course).
dir root c:\
dir progs c:\
dir gui c:\
dir apps c:\apps
dir edit c:\apps
dir sound c:\apps
dir net c:\net
dir network c:\net
dir archiver c:\util
dir boot c:\util
dir unix c:\util
dir util c:\util
dir utils c:\utils
dir emulator c:\emulator
dir batlink %DOSDIR%\links
dir batlinks %DOSDIR%\links
# links to apps that are supposed to be executable from %PATH%
# IMPORTANT: this directory should be included in your %PATH%
dir links %DOSDIR%\links
##############################################################################
# Below are listed all online repositories used by FDNPKG. The syntax is:
# REPO repository_path
#
# FDNPKG supports both online (http or gopher) repositories, as well as on
# disk repos.
# When using ondisk repositories, you have to use the full path (eg. D:\REPO)
#
# CORE repository - all MSDOS replacements
REPO http://4ch.mooo.com/freedos/repos/1.4/base
# Basic Tools - Essential tools for the FreeDOS that are not part of BASE
REPO http://4ch.mooo.com/freedos/repos/1.4/tools
# Programs and Applications
REPO http://4ch.mooo.com/freedos/repos/1.4/apps
# Packers, ie. file archivers
REPO http://4ch.mooo.com/freedos/repos/1.4/archiver
# Boot utilities
REPO http://4ch.mooo.com/freedos/repos/1.4/boot
# Devel stuff - mostly compilers
REPO http://4ch.mooo.com/freedos/repos/1.4/devel
# Disk utilities - Disk management and related utilities
REPO http://4ch.mooo.com/freedos/repos/1.4/disk
# Drivers (hardware-related)
REPO http://4ch.mooo.com/freedos/repos/1.4/drivers
# Editors
REPO http://4ch.mooo.com/freedos/repos/1.4/edit
# Emulators
REPO http://4ch.mooo.com/freedos/repos/1.4/emulator
# Games
REPO http://4ch.mooo.com/freedos/repos/1.4/games
# Text & Graphical User Interfaces
REPO http://4ch.mooo.com/freedos/repos/1.4/gui
# Networking-related utilities
REPO http://4ch.mooo.com/freedos/repos/1.4/net
# Sound
REPO http://4ch.mooo.com/freedos/repos/1.4/sound
# Unix-like Utilities
REPO http://4ch.mooo.com/freedos/repos/1.4/unix
# Various utils
REPO http://4ch.mooo.com/freedos/repos/1.4/util
# sparky4's repo (i want to host a fdos mirror)
##REPO http://4ch.mooo.com/freedos