julianxhokaxhiu / FFNx-vcpkg-repo

My custom vcpkg repository of ports not present officially

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

vcpkg-repo

My custom vcpkg repository of ports not present officially

Preparation

  1. Install NodeJS + NPM
  2. Run these commands:
$ git clone https://github.com/julianxhokaxhiu/vcpkg-repo.git
$ npm i

How to operate

  1. Add your own port in ports/
  2. Run the following commands
# First we need to commit the new port
$ git add ports/
# We create a temporary commit os we can put it in the registry correctly
$ git commit -m 'temporary'
# This script will take care of updating your versions folder reflecting any change made in ports
$ npm run postinstall
# The add the new versions changes and amend the previous commit
$ git add versions
$ git commit --amend
# Release the update
$ git push

About

My custom vcpkg repository of ports not present officially

License:MIT License


Languages

Language:CMake 92.1%Language:JavaScript 7.9%