initial import

This commit is contained in:
2025-06-22 20:39:04 -05:00
commit f8a70886f0
3428 changed files with 302546 additions and 0 deletions

26
libtiger/PKGBUILD Normal file
View File

@@ -0,0 +1,26 @@
# Maintainer: Jesus E. <heckyel@riseup.net>
pkgname=libtiger
pkgver=0.3.4
pkgrel=2
pkgdesc="A rendering library for Kate streams using Pango and Cairo"
license=('LGPL-2.1')
arch=('i686' 'x86_64')
depends=('pango' 'libkate')
makedepends=('pkg-config')
source=("https://download.videolan.org/contrib/tiger/$pkgname-$pkgver.tar.gz")
sha512sums=('559e522b5127f32fdd08d62c40dfb493dc2db1efd1e21707d723ef27cbe03e7e38fb04d40856d824ed0c3c94a223ed1a0358fc11ecb30446b5ee5c7a3b802e6d')
build() {
cd "${srcdir}/${pkgname}-${pkgver}"
./configure --prefix=/usr \
--enable-static=no \
--disable-doc
make
}
package() {
cd "${srcdir}/${pkgname}-${pkgver}"
make DESTDIR="${pkgdir}" install
install -Dm644 COPYING -t "${pkgdir}"/usr/share/licenses/${pkgname}
}