How To Install libtweeny-dev on Kali Linux

In this tutorial we learn how to install libtweeny-dev on Kali Linux. libtweeny-dev is modern C++ tweening library

Introduction

In this tutorial we learn how to install libtweeny-dev on Kali Linux.

What is libtweeny-dev

libtweeny-dev is:

Tweeny is an inbetweening library designed for the creation of complex animations for games and other beautiful interactive software. It leverages features of modern C++ to empower developers with an intuitive API for declaring tweenings of any type of value, as long as they support arithmetic operations.

The goal of Tweeny is to provide means to create fluid interpolations when animating position, scale, rotation, frames or other values of screen objects, by setting their values as the tween starting point and then, after each tween step, plugging back the result.

It features:

  • A descriptive and (hopefully) intuitive API,
  • 30+ easing functions,
  • Allows custom easing functions,
  • Multi-point tweening,
  • Simultaneous tween of heterogeneous value sets,
  • Timeline-like usage (allows seeking to any point),
  • Header-only
  • Zero external dependencies
  • Steps forwards or backwards :)
  • Accepts lambdas, functors and functions as step and seek callbacks

There are three methods to install libtweeny-dev on Kali Linux. We can use apt-get, apt and aptitude. In the following sections we will describe each method. You can choose one of them.

Install libtweeny-dev Using apt-get

Update apt database with apt-get using the following command.

sudo apt-get update

After updating apt database, We can install libtweeny-dev using apt-get by running the following command:

sudo apt-get -y install libtweeny-dev

Install libtweeny-dev Using apt

Update apt database with apt using the following command.

sudo apt update

After updating apt database, We can install libtweeny-dev using apt by running the following command:

sudo apt -y install libtweeny-dev

Install libtweeny-dev Using aptitude

If you want to follow this method, you might need to install aptitude on Kali Linux first since aptitude is usually not installed by default on Kali Linux. Update apt database with aptitude using the following command.

sudo aptitude update

After updating apt database, We can install libtweeny-dev using aptitude by running the following command:

sudo aptitude -y install libtweeny-dev

How To Uninstall libtweeny-dev on Kali Linux

To uninstall only the libtweeny-dev package we can use the following command:

sudo apt-get remove libtweeny-dev

Uninstall libtweeny-dev And Its Dependencies

To uninstall libtweeny-dev and its dependencies that are no longer needed by Kali Linux, we can use the command below:

sudo apt-get -y autoremove libtweeny-dev

Remove libtweeny-dev Configurations and Data

To remove libtweeny-dev configuration and data from Kali Linux we can use the following command:

sudo apt-get -y purge libtweeny-dev

Remove libtweeny-dev configuration, data, and all of its dependencies

We can use the following command to remove libtweeny-dev configurations, data and all of its dependencies, we can use the following command:

sudo apt-get -y autoremove --purge libtweeny-dev

Dependencies

libtweeny-dev have the following dependencies:

References

Summary

In this tutorial we learn how to install libtweeny-dev package on Kali Linux using different package management tools: apt, apt-get and aptitude.