mirror of
https://gitdl.cn/https://github.com/chakralinux/gtk.git
synced 2025-01-24 01:42:13 +08:00
28 lines
715 B
Bash
28 lines
715 B
Bash
# Contributions from Arch:
|
|
# Maintainer: Florian Pritz <bluewind@xinu.at>
|
|
# Contributor: Martchus <martchus@gmx.net>
|
|
|
|
pkgname=libfilezilla
|
|
pkgver=0.9.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')
|
|
source=("https://download.filezilla-project.org/${pkgname}/${pkgname}-${pkgver}.tar.bz2")
|
|
md5sums=('4676304b048869ab6ac6ae09a1ab29f9')
|
|
|
|
build() {
|
|
cd "${srcdir}/$pkgname-$pkgver"
|
|
./configure \
|
|
--prefix=/usr \
|
|
--disable-static
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd "${srcdir}/$pkgname-$pkgver"
|
|
make DESTDIR="${pkgdir}" install
|
|
}
|