Skip to content
Navigation Menu
Toggle navigation
Sign in
In this repository
All GitHub Enterprise
↵
Jump to
↵
No suggested jump to results
In this repository
All GitHub Enterprise
↵
Jump to
↵
In this organization
All GitHub Enterprise
↵
Jump to
↵
In this repository
All GitHub Enterprise
↵
Jump to
↵
Sign in
Reseting focus
You signed in with another tab or window.
Reload
to refresh your session.
You signed out in another tab or window.
Reload
to refresh your session.
You switched accounts on another tab or window.
Reload
to refresh your session.
Dismiss alert
{{ message }}
mariux64
/
mxtools
Public
Notifications
You must be signed in to change notification settings
Fork
0
Star
1
Code
Issues
15
Pull requests
5
Actions
Projects
0
Security
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Projects
Security
Insights
Files
6795406
applications-defaults
blink
checktrust
clusterd
crashkernel
cronwrap
desktop-files
etc
fon
forensics
hostconfig
kill-exuser
kvm_monitor
libexec_cron
libexec_startup
logrotate
make-automaps
mkmotd
mozilla-launcher
mxgrub
mxmirror
mxmount
mxnetctl
mxproxmox
mxqi
mxraid
mxrouter
mxshadow
mxsnoop
mxstartup
mxvlan
net_qdisc_nfs_low
netlog
nfsdtop
nvidiactl
pdist
pkgadmin
pmirror
prun
put_websafe
serial-log
slowio
unbound
usrlocalpkg/admin
lib
ANNOTATE.profile
OpenRA.profile
R-devel.profile
R_ddbtools.profile
admin.profile
allegro.profile
ant.profile
apollo.profile
archive.profile
artemis.profile
blastz.profile
blat.profile
blender.profile
cistem.profile
cluster.profile
compass.profile
consed.profile
cuda-7.profile
cuda-8.profile
cuda.profile
cyrus.profile
cytoscape.profile
ddbtools.profile
dia.profile
dialign.profile
dict.profile
djvu.profile
donald.profile
dotter.profile
eagleview.profile
emboss.profile
flightgear.profile
footprinter.profile
forester.profile
fragpipe.profile
freemind.profile
games.profile
gblocks.profile
genotator.profile
gephi.profile
ghmm.profile
gis.profile
gog.profile
graphviz.profile
hmmer.profile
ica.profile
icc.profile
icepdf.profile
ilastik.profile
image.profile
imgdb.profile
infernal.profile
instagraal.profile
interpro.profile
ipython.profile
jabref.profile
jalview.profile
jdk-7u80-0.profile
jdk-7u80-1.profile
jedit.profile
jexpress.profile
jruby.profile
lam.profile
lyx.profile
maple.profile
mariux64.profile
mariux64R.profile
mariux64ant.profile
mariux64python27.profile
mathematica.profile
matlab.profile
mcl.profile
mdl.profile
meme.profile
metareg.profile
mfold.profile
molphy.profile
mono.profile
mouseatlas.profile
mummer.profile
muscle.profile
mx.profile
mx_tools.profile
mysql-workbench.profile
mysqlguitools.profile
ncbi.profile
netbeans.profile
netbeans_php.profile
netbeans_ruby.profile
newbadger.profile
node.profile
ocaml.profile
octave.profile
omni.profile
orpheus.profile
palemoon.profile
paml.profile
pandoc.profile
paraview.profile
pbackup.profile
pdfsam.profile
pgadmin.profile
phrap.profile
phred.profile
phylip.profile
phylobayes.profile
phyml.profile
pipe.profile
possum.profile
postgres.profile
primer3.profile
psipred.profile
pymol.profile
python263.profile
python267.profile
python3.profile
r.profile
radius.profile
repeatmasker.profile
reputer.profile
ruby.profile
samba.profile
samtools-0.1.19.profile
samtools-1.5.profile
samtools-1.6.profile
samtools-1.7.profile
samtools-1.8.profile
samtools.profile
scim.profile
sequencer.profile
sequtils.profile
sgml.profile
slurm.profile
snavigator.profile
snoopy.profile
snoopy28.profile
spatt.profile
splitstree.profile
sqlite.profile
squad.profile
sratools.profile
ssaha.profile
texlive2012.profile
texlive2015.profile
texlive2020.profile
texlive2022.profile
texmacs.profile
texmaker.profile
trawler.profile
tree_puzzle.profile
treeview.profile
treeviewx.profile
trimal.profile
trnascan.profile
tsm.profile
unafold.profile
viennarna.profile
visit.profile
visualstudio.profile
vokabel.profile
voreen.profile
wublast.profile
config
makebin
uvpn
vmcontrol
wakeonlan
.gitignore
Makefile
README.md
install.sh
Breadcrumbs
mxtools
/
usrlocalpkg
/
admin
/
lib
/
netbeans_ruby.profile
Blame
Blame
Latest commit
History
History
53 lines (44 loc) · 939 Bytes
Breadcrumbs
mxtools
/
usrlocalpkg
/
admin
/
lib
/
netbeans_ruby.profile
Top
File metadata and controls
Code
Blame
53 lines (44 loc) · 939 Bytes
Raw
# set -a GETVER= PKGROOT="/package/netbeans" OS=`uname` case $OS in Linux* ) ARCH=`arch` if [ -e /lib/libc.so.6 ]; then LIBC= else LIBC=-glibc-2.2 fi MARCH=${ARCH}${LIBC} ;; OSF* ) MARCH=${OS} ;; * ) echo "user_local_package_bin_wrapper-error: $1 not known OS!" ;; esac if [ "x$GETVER" = "x" ]; then if [ -L ${PKGROOT}/${MARCH}_current ]; then VER="${MARCH}_current" else VER="current_ruby" fi else VER="${GETVER}" fi ISPATH="${PKGROOT}/${VER}/${MARCH}" if [ ! -e "${ISPATH}/." ]; then echo "PROFILE ERROR: Can't stat path [$ISPATH]" exit -1; else PPATH="${ISPATH}/bin" PATH=${PATH:+"$PPATH:"}$PATH if [ -e "${ISPATH}/lib/." ]; then LDPATH="${ISPATH}/lib" LD_LIBRARY_PATH=$LDPATH${LD_LIBRARY_PATH:+":LD_LIBRARY_PATH"} fi fi export PATH export LD_LIBRARY_PATH
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
You can’t perform that action at this time.