kiss-stj

My KISS Linux repo for software I use on my computers.
git clone https://git.stjo.hn/kiss-stj
Log | Files | Refs | README | LICENSE

commit 2c0bc5129ab4664bef41a3d652216a31367e4ba8
parent 92f5b358ec0d31aa3c432358c3ae8a36b45b50a4
Author: St John Karp <contact@stjo.hn>
Date:   Sat, 16 Jul 2022 06:12:35 -0400

tdlib: Add new package at version 1.7.9

TDLib is a library for working with the Telegram chat system.
It's a requirement of the Telegram libpurple plugin.

Diffstat:
Alibs/tdlib/build | 10++++++++++
Alibs/tdlib/depends | 4++++
Alibs/tdlib/sources | 1+
Alibs/tdlib/version | 1+
4 files changed, 16 insertions(+), 0 deletions(-)

diff --git a/libs/tdlib/build b/libs/tdlib/build @@ -0,0 +1,10 @@ +#!/usr/bin/env sh + +mkdir -p build +cd build +cmake \ + -DCMAKE_BUILD_TYPE=Release \ + -DCMAKE_INSTALL_PREFIX=/usr \ + .. +cmake --build . +cmake --install . diff --git a/libs/tdlib/depends b/libs/tdlib/depends @@ -0,0 +1,4 @@ +cmake make +finch +openssl +zlib diff --git a/libs/tdlib/sources b/libs/tdlib/sources @@ -0,0 +1 @@ +git+https://github.com/tdlib/td.git#7d41d9eaa58a6e0927806283252dc9e74eda5512 diff --git a/libs/tdlib/version b/libs/tdlib/version @@ -0,0 +1 @@ +1.7.9 1