Skip to content
This repository has been archived by the owner on Jun 9, 2024. It is now read-only.

Binary Debian Packages

Christian edited this page May 24, 2017 · 13 revisions

Experimental binary packages for Debian (currently only amd64) can be found in the Froonix Repository.

Tested at Debian Jessie, but there's no guarantee that the package works on every Debian release!

Rebuild for other architectures or distributions

development snapshot

sudo apt install git build-essential devscripts libusb-dev dh-exec

git clone "https://github.com/froonix/pcsensor-temper.git"
cd "pcsensor-temper"

## Switch to a feature or bugfix branch
#git checkout "foobar"

# Build fake tarball for source format quilt...
tar cfva ../pcsensor-temper_1.1.1.orig.tar.xz ./ --exclude=.git

# Build the package, but don't sign it!
debuild -us -uc

stable release

sudo apt install build-essential devscripts libusb-dev dh-exec

wget "https://github.com/froonix/pcsensor-temper/archive/release-1.1.1-1.tar.gz"
mv "release-1.1.1-1.tar.gz" "pcsensor-temper_1.1.1.orig.tar.gz"
tar xfv "pcsensor-temper_1.1.1.orig.tar.gz"
cd "pcsensor-temper-release-1.1.1-1"

# Build the package, but don't sign it!
debuild -us -uc
Clone this wiki locally