-
Notifications
You must be signed in to change notification settings - Fork 36
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Couchdb src #56
Couchdb src #56
Conversation
Add GnuPG 2.4.3 dynamic executable with dependencies Signed-off-by: Mantu Matei <matei.mantu@stud.acs.upb.ro>
Add CouchDB build from source script Signed-off-by: Mantu Matei <matei.mantu@stud.acs.upb.ro>
Add CouchDB build from source using a script. Currently version 3.3.2 but can be modifiable via a variable in the script Signed-off-by: Mantu Matei <matei.mantu@stud.acs.upb.ro>
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
#pushd apache-couchdb-3.3.2.tar.gz > /dev/null 2>&1 || exit | ||
|
||
echo "Configuring CouchDB ... " | ||
cd apache-couchdb-$VERSION |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
cd apache-couchdb-$VERSION | |
pushd "apache-couchdb-$VERSION" &> /dev/null || exit 1 |
make -j "$(nproc)" | ||
#popd > /dev/null 2>&1 || exit | ||
|
||
cd ../ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
cd ../ | |
popd &> /dev/null || exit 1 |
|
||
echo -n "Building CouchDB ... " | ||
make -j "$(nproc)" | ||
#popd > /dev/null 2>&1 || exit |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
#popd > /dev/null 2>&1 || exit |
tar xzf apache-couchdb-$VERSION.tar.gz | ||
echo "" | ||
|
||
#pushd apache-couchdb-3.3.2.tar.gz > /dev/null 2>&1 || exit |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
#pushd apache-couchdb-3.3.2.tar.gz > /dev/null 2>&1 || exit |
|
||
# Packing the app | ||
mkdir dynamic-couchdb | ||
cd dynamic-couchdb |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
cd dynamic-couchdb | |
pushd dynamic-couchdb &> /dev/null || exit 1 |
Add CouchDB build from source using a script. Currently version 3.3.2 but can be modifiable via a variable in the script