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
Ok.First, You install go-lang, set environment variable 'GOPATH' and clone this repository to $GOPATH/src/github.com/numa08/git-gitlab.
Second, you should show .travis.yml. .travis.yml is a configuration file for travis-ci. This file is written build script. I believe this file help you.
Third, you install libgit2. libgit2 is a library. Sorry, I didn't try on archlinux, on ubuntu run below command.
$ wget -O libgit2-0.22.1.tar.gz https://github.com/libgit2/libgit2/archive/v0.22.1.tar.gz
$ tar -xzvf libgit2-0.22.1.tar.gz
$ cd libgit2-0.22.1 && mkdir build && cd build
$ cmake -DTHREADSAFE=ON -DBUILD_CLAR=OFF -DCMAKE_C_FLAGS=-fPIC -DCMAKE_BUILD_TYPE="RelWithDebInfo" -DCMAKE_INSTALL_PREFIX=/usr/local .. && make && sudo make install
$ sudo ldconfig
I'm trying to package this for archlinux, and as I'm not familiar with go, I'm having some difficulties building it.
Step-by-step instructions on how to install dependencies and build the project would be really great!
The text was updated successfully, but these errors were encountered: