Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
DuniterPy
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
clients
python
DuniterPy
Merge requests
!131
Barely document pip installation, remove ci/libsodium.sh
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Barely document pip installation, remove ci/libsodium.sh
155_install_doc
into
dev
Overview
0
Commits
2
Pipelines
1
Changes
2
Merged
Moul
requested to merge
155_install_doc
into
dev
4 years ago
Overview
0
Commits
2
Pipelines
1
Changes
2
Expand
#155 (closed)
: Barely document
pip
installation
Remove no longer used
ci/libsodium.sh
0
0
Merge request reports
Compare
dev
dev (base)
and
latest version
latest version
d0d74e92
2 commits,
4 years ago
2 files
+
6
−
15
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
2
Search (e.g. *.vue) (Ctrl+P)
ci/libsodium.sh deleted
100644 → 0
+
0
−
14
Options
#!/bin/bash
set
-ev
git clone git://github.com/jedisct1/libsodium.git
cd
libsodium
git checkout tags/1.0.3
./autogen.sh
if
[[
$TRAVIS_OS_UNAME
=
'Darwin'
]]
;
then
export
CFLAGS
=
"-Os -m32 -arch i386"
;
export
LDFLAGS
=
"-m32 -arch i386"
;
fi
./configure
make
&&
sudo
make
install
if
[[
$TRAVIS_OS_UNAME
=
'Linux'
]]
;
then
sudo
ldconfig
;
fi
\ No newline at end of file
Loading