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

30
libfilezilla/PKGBUILD Normal file
View File

@@ -0,0 +1,30 @@
# Maintainer: Jesus E. <heckyel@riseup.net>
pkgname=libfilezilla
pkgver=0.26.0
pkgrel=2
pkgdesc="Small and modern C++ library, offering some basic functionality to build high-performing, platform-independent programs"
url='https://lib.filezilla-project.org/'
arch=('i686' 'x86_64')
license=('GPL-2')
depends=('glibc' 'gcc-libs' 'nettle' 'gnutls')
makedepends=('clang' 'gettext-tiny')
checkdepends=('cppunit')
source=(https://download.filezilla-project.org/libfilezilla/libfilezilla-${pkgver}.tar.bz2)
sha512sums=('96ccc61e66dae744c092389a570f591e4f4e62ebf4fc39ed5a60206ea96b47b1aeb3d8f2fb7e22b4920560af4ec212540cc177d23ddbeea879dcd80143b86af6')
build() {
cd ${pkgname}-${pkgver}
export CXX=clang++
export CC=clang
./configure \
--prefix=/usr \
--disable-static
make
}
package() {
cd ${pkgname}-${pkgver}
make DESTDIR="${pkgdir}" install
install -Dm644 COPYING -t "${pkgdir}/usr/share/licenses/$pkgname"
}