mirror of
https://gitdl.cn/https://github.com/chakralinux/gtk.git
synced 2025-02-04 00:07:16 +08:00
28 lines
737 B
Bash
28 lines
737 B
Bash
|
# Contributions from Arch:
|
||
|
# Maintainer: Florian Pritz <bluewind@xinu.at>
|
||
|
# Contributor: Martchus <martchus@gmx.net>
|
||
|
|
||
|
pkgname=libfilezilla
|
||
|
pkgver=0.3.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://filezilla-project.org/"
|
||
|
license=('GPL')
|
||
|
depends=('gcc-libs')
|
||
|
source=("http://downloads.sourceforge.net/project/filezilla/libfilezilla/${pkgver}/libfilezilla-${pkgver}.tar.bz2")
|
||
|
md5sums=('b38566adef2f9f72f7feb45108d80b0c')
|
||
|
|
||
|
build() {
|
||
|
cd "${srcdir}/$pkgname-$pkgver"
|
||
|
./configure \
|
||
|
--prefix=/usr \
|
||
|
--disable-static
|
||
|
make
|
||
|
}
|
||
|
|
||
|
package() {
|
||
|
cd "${srcdir}/$pkgname-$pkgver"
|
||
|
make DESTDIR="${pkgdir}" install
|
||
|
}
|