PKGBUILDs/libfilezilla/mingw-w64/PKGBUILD

48 lines
1.4 KiB
Bash

# Maintainer: Martchus <martchus@gmx.net>
# All my PKGBUILDs are managed at https://github.com/Martchus/PKGBUILDs where
# you also find the URL of a binary repository.
_name=libfilezilla
pkgname=mingw-w64-libfilezilla
pkgver=0.5.3
pkgrel=1
pkgdesc="Library used by FileZilla (mingw-w64)"
arch=('any')
url="https://filezilla-project.org/"
license=('GPL')
depends=('mingw-w64-crt')
makedepends=('mingw-w64-configure')
options=(staticlibs !strip !buildflags)
install=
source=("http://downloads.sourceforge.net/project/filezilla/libfilezilla/${pkgver}/${_name}-${pkgver}.tar.bz2"
'extern_template_instantiation.patch')
md5sums=('6192fd89318c1107b5b8095fd43dc3a5'
'06871d88895b83d56069be8f5952fdf4')
_architectures="i686-w64-mingw32 x86_64-w64-mingw32"
prepare() {
cd "${srcdir}/${_name}-${pkgver}"
patch -p0 -i ../extern_template_instantiation.patch
autoreconf -i
}
build() {
export CXXFLAGS='-O0'
for _arch in ${_architectures}; do
mkdir -p "${srcdir}/${_name}-${pkgver}/build-${_arch}" && cd "${srcdir}/${_name}-${pkgver}/build-${_arch}"
${_arch}-configure
make
done
}
package() {
for _arch in ${_architectures}; do
cd "${srcdir}/${_name}-${pkgver}/build-${_arch}"
make DESTDIR="${pkgdir}" install
${_arch}-strip -g "${pkgdir}/usr/${_arch}/lib/"*.a
${_arch}-strip --strip-unneeded "$pkgdir"/usr/${_arch}/bin/*.dll
done
}