项目作者: SkYNewZ

项目描述 :
Repo containing .rpm, .deb and Boostnote app folder
高级语言:
项目地址: git://github.com/SkYNewZ/Boostnote-packages.git
创建时间: 2018-01-15T21:07:18Z
项目社区:https://github.com/SkYNewZ/Boostnote-packages

开源协议:MIT License

下载


Boostnote-packages

Build Status
CircleCI
Github All Releases
Latest version

Please check Boostnote repository before : https://github.com/BoostIO/Boostnote/

I follow this guide.
Packages are now builed by CircleCI.

How it works

According to this guide,

  • Install dependencies for building : dnf install -y dpkg dpkg-dev rpm-build fakeroot
  • Clone the Boostnote repo and install node dependencies
  • Launch build command to generate .rpm and .deb package (see here)
  • Tar the standalone package
  • Use github-release for automatic publishing (https://github.com/aktau/github-release)
    • Create new tag
    • Upload Boostnote-linux-x64-${LAST_TAG}.tar.gz
    • Upload boostnote_0.8.20_amd64.deb
    • Upload boostnote-0.8.20.x86_64.rpm

Downloads and install

Fedora/Redhat

  1. # install require package
  2. $ sudo yum install lsb
  3. # download
  4. $ wget https://github.com/SkYNewZ/Boostnote-packages/releases/download/v0.8.20/boostnote-0.8.20.x86_64.rpm -O /tmp/boostnote-0.8.20.x86_64.rpm
  5. # install
  6. $ sudo rpm -ivh /tmp/boostnote-0.8.20.x86_64.rpm
  7. # clean
  8. $ rm /tmp/boostnote-0.8.20.x86_64.rpm

Debian/Ubuntu

  1. # download
  2. $ wget hhttps://github.com/SkYNewZ/Boostnote-packages/releases/download/v0.8.20/boostnote_0.8.20_amd64.deb -O /tmp/boostnote_0.8.20_amd64.deb
  3. # install
  4. $ sudo dpkg -i /tmp/boostnote_0.8.20_amd64.deb
  5. # install missing depedencies
  6. $ sudo apt-get -f install
  7. # clean
  8. rm /tmp/boostnote_0.8.20_amd64.deb