diff options
author | Leo <thinkabit.ukim@gmail.com> | 2019-05-28 19:00:59 -0300 |
---|---|---|
committer | prspkt <prspkt@protonmail.com> | 2019-05-29 02:03:28 +0300 |
commit | f8b4025e448fec013ce0bf8bba481370e6abe444 (patch) | |
tree | 6e7f9d0a1aba3238b1b4bb6e33b8dbfc75661136 /community/libfilezilla | |
parent | c0cc1271df000454f856e8615ad5346e60f0dda6 (diff) | |
download | aports-f8b4025e448fec013ce0bf8bba481370e6abe444.tar.bz2 aports-f8b4025e448fec013ce0bf8bba481370e6abe444.tar.xz |
community/libfilezilla: upgrade to 0.16.0
Diffstat (limited to 'community/libfilezilla')
-rw-r--r-- | community/libfilezilla/APKBUILD | 14 |
1 files changed, 6 insertions, 8 deletions
diff --git a/community/libfilezilla/APKBUILD b/community/libfilezilla/APKBUILD index e158655d69..aab7accf94 100644 --- a/community/libfilezilla/APKBUILD +++ b/community/libfilezilla/APKBUILD @@ -1,7 +1,7 @@ # Maintainer: Leonardo Arena <rnalrd@alpinelinux.org> # filezilla needs to be rebuilt when libfilezilla version changes, ABI is not stable pkgname=libfilezilla -pkgver=0.15.1 +pkgver=0.16.0 pkgrel=0 pkgdesc="C++ library, offering some basic functionality to build high-performing, platform-independent programs" url="https://filezilla-project.org" @@ -10,25 +10,23 @@ license="GPL-2.0-or-later" makedepends="cppunit-dev nettle-dev" subpackages="$pkgname-dev" source="https://download.filezilla-project.org/libfilezilla/$pkgname-$pkgver.tar.bz2" -builddir="$srcdir"/$pkgname-$pkgver build() { - cd "$builddir" - ./configure --prefix=/usr \ + ./configure \ + --prefix=/usr \ --sysconfdir=/etc \ --mandir=/usr/share/man \ - --infodir=/usr/share/info + --infodir=/usr/share/info \ + --disable-static make } package() { - cd "$builddir" make DESTDIR="$pkgdir" install } check() { - cd "$builddir" make check } -sha512sums="d557f7636bfc3958b8558fab3384b0ea84caea594566d39c051f20f02dfd71213369c50df282a3f7d2dd757038bd26e9722214839dab965cb7cde9733d59883a libfilezilla-0.15.1.tar.bz2" +sha512sums="ea3302ae0c51582d6715fa3dd06d330a2ac820c3229b4dcab4a3470021dba667b6aea1a5b13168d720d7218cc8513e40c97990ed6573d0ea46d76e6ef50c2e6e libfilezilla-0.16.0.tar.bz2" |