Skip to content

Main brewtarget source code repository.

License

GPL-3.0, WTFPL licenses found

Licenses found

GPL-3.0
COPYING.GPLv3
WTFPL
COPYING.WTFPL
Notifications You must be signed in to change notification settings

wonsjb/brewtarget

This branch is 1002 commits behind Brewtarget/brewtarget:develop.

Folders and files

NameName
Last commit message
Last commit date
Oct 1, 2013
Nov 10, 2014
Oct 26, 2016
Oct 5, 2016
Mar 19, 2016
Jan 3, 2016
Feb 27, 2012
Jan 5, 2016
Nov 9, 2014
Aug 22, 2009
Sep 24, 2018
Jan 27, 2019
Mar 24, 2018
Jan 27, 2019
Dec 23, 2017
Mar 18, 2009
Aug 2, 2014
Jan 27, 2017
Oct 11, 2015
Apr 10, 2016
Oct 26, 2016
Aug 26, 2017
Mar 26, 2010
Mar 26, 2010
Jan 3, 2016
Nov 2, 2017
Dec 23, 2017
Jan 11, 2016
Oct 26, 2016
Mar 20, 2016
Jan 3, 2015
Aug 9, 2014

Repository files navigation

Brewtarget Build Status

Brewtarget is free open-source brewing software, and a beer recipe creation tool available for Linux, Mac, and Windows. It automatically calculates color, bitterness, and other parameters for you while you drag and drop ingredients into the recipe. Brewtarget also has many other tools such as priming sugar calculators, OG correction help, and a unique mash designing tool. It also can export and import recipes in BeerXML, allowing you to easily share recipes with friends who use BeerSmith or other programs. All of this means that Brewtarget is your single, free, go-to tool when crafting your beer recipes.

Authors

Author list created with:

$ git log --raw | grep "^Author: " | sort | uniq -c | sort -nr

Websites

For Users

For Developers

Compiling and Installing

Dependencies

On Debian systems like Ubuntu, the packages for dependencies are:

  • cmake (>= 2.8.11)
  • git
  • qtbase5-dev
  • qttools5-dev
  • qttools5-dev-tools
  • qtmultimedia5-dev
  • libqt5sql5-sqlite
  • libqt5sql5-psql
  • libqt5svg5-dev
  • libqt5multimedia5-plugins
  • doxygen (optional, for source documentation)

Compiling

We do not do any in-source builds. You will create a separate directory for the build.

$ mkdir brewtarget-build
$ cd brewtarget-build
$ cmake /path/to/brewtarget-src
$ make

Installing

Linux-like systems may simply do:

$ sudo make install

Systems that use .deb or .rpm packages may also create a package first:

$ make package

Then either

$ sudo dpkg -i brewtarget*.deb

or

$ sudo rpm -i brewtarget*.rpm

On Mac and Windows environments, the package target will create an installer that may be executed to finish the installation.

Make targets

  • make package Makes .deb, .rpm, NSIS Installer, and .tar.bz2 binary packages.
  • make package_source Makes a .tar.bz2 source package.
  • make source_doc Makes html documentation of the source in doc/html.

Cmake options

These options are passed to cmake with the -D flag before compiling. For example:

$ cmake /path/to/brewtarget -DCMAKE_INSTALL_PREFIX=/usr -DDO_RELEASE_BUILD=ON
  • CMAKE_INSTALL_PREFIX - /usr/local by default. Set this to /usr on Debian-based systems like Ubuntu.
  • BUILD_DESIGNER_PLUGINS - OFF by default. If set to ON, builds the Qt Designer plugins instead of brewtarget.
  • DO_RELEASE_BUILD - OFF by default. If ON, will do a release build. Otherwise, debug build.
  • NO_MESSING_WITH_FLAGS - OFF by default. ON means do not add any build flags whatsoever. May override other options.

About

Main brewtarget source code repository.

Resources

License

GPL-3.0, WTFPL licenses found

Licenses found

GPL-3.0
COPYING.GPLv3
WTFPL
COPYING.WTFPL

Stars

Watchers

Forks

Packages

No packages published

Languages

  • C++ 64.6%
  • PLpgSQL 30.6%
  • CMake 1.4%
  • Perl 1.4%
  • C 1.0%
  • CSS 0.3%
  • Other 0.7%