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

28
znc-clientbuffer/PKGBUILD Normal file
View File

@@ -0,0 +1,28 @@
# Maintainer: Jesus E. <heckyel@riseup.net>
pkgname=znc-clientbuffer
pkgver=1.0.48
pkgrel=1
pkgdesc="ZNC module for client specific buffers"
arch=('i686' 'x86_64')
url='https://github.com/CyberShadow/znc-clientbuffer'
license=('Apache-2.0')
depends=('znc')
makedepends=('cmake' 'python')
source=("${pkgname}-${pkgver}.tar.gz::https://github.com/CyberShadow/znc-clientbuffer/archive/v${pkgver}.tar.gz"
"LICENSE")
sha512sums=('eac4d748b670a8e3563a424fcb5c9c411af6c9b1f9965f065936ddfcfbff946783e34e0d6b32de18fb3b87fb27db129ff58bedfb179473c804750a9b770897f6'
'fc83f5bf06b9500130f4378a9023eb57516e5effc1cf471ca96de6da307f2f3aeda411e348b3f7d2f38bcfa224659eef84721876077157e356d7a02e1fa968c7')
export PREFIX=/usr
build() {
cd "$pkgname-$pkgver"
make
}
package() {
cd "$pkgname-$pkgver"
make DESTDIR="$pkgdir" install
install -Dm644 "$srcdir/LICENSE" -t "$pkgdir/usr/share/licenses/$pkgname"
}