mirror of
https://gitdl.cn/https://github.com/chakralinux/gtk.git
synced 2025-02-03 07:07:13 +08:00
31 lines
821 B
Bash
31 lines
821 B
Bash
# Contributions from Arch:
|
|
# Maintainer: Florian Pritz <bluewind@xinu.at>
|
|
# Contributor: Martchus <martchus@gmx.net>
|
|
|
|
pkgname=libfilezilla
|
|
pkgver=0.15.1
|
|
pkgrel=1
|
|
pkgdesc="Small and modern C++ library, offering some basic functionality to build high-performing, platform-independent programs"
|
|
arch=('x86_64')
|
|
url="https://lib.filezilla-project.org/"
|
|
license=('GPL')
|
|
depends=('gcc-libs' 'nettle')
|
|
makedepends=('clang')
|
|
source=("https://download.filezilla-project.org/${pkgname}/${pkgname}-${pkgver}.tar.bz2")
|
|
sha256sums=('2048c4128f3bf37a2a4ece17c8bea5455f3d7414fe2e060afcf2a8b00a87f49f')
|
|
|
|
build() {
|
|
cd "${srcdir}/$pkgname-$pkgver"
|
|
export CXX=clang++
|
|
export CC=clang
|
|
./configure \
|
|
--prefix=/usr \
|
|
--disable-static
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd "${srcdir}/$pkgname-$pkgver"
|
|
make DESTDIR="${pkgdir}" install
|
|
}
|