diff options
author | Alexandr Savca <alexandr.savca89@gmail.com> | 2021-01-15 13:55:44 +0200 |
---|---|---|
committer | Alexandr Savca <alexandr.savca89@gmail.com> | 2021-01-15 17:02:39 +0200 |
commit | 5dc2e36b66958bd5c60ffcec7f30a33f979bed81 (patch) | |
tree | ede7e0d61b4d89c975603edbfc4ea0c80f63b2a5 /libfilezilla | |
parent | eb2a165f4464d044ebb5fc0aee5a03b2b6af9634 (diff) | |
download | contrib-5dc2e36b66958bd5c60ffcec7f30a33f979bed81.tar.gz contrib-5dc2e36b66958bd5c60ffcec7f30a33f979bed81.tar.xz |
[notify] libfilezilla: cleanup Pkgfile, remove redundant deps: clang, libidn2; unmaintained now
Caution
=======
libfilezilla has lost a maintainer, and will be removed from the
contrib soon if no new maintainer is found.
Feel free to adopt it if need.
Diffstat (limited to 'libfilezilla')
-rw-r--r-- | libfilezilla/.footprint | 1 | ||||
-rw-r--r-- | libfilezilla/.signature | 6 | ||||
-rw-r--r-- | libfilezilla/Pkgfile | 29 |
3 files changed, 18 insertions, 18 deletions
diff --git a/libfilezilla/.footprint b/libfilezilla/.footprint index 8f61749ec..98c0ab54d 100644 --- a/libfilezilla/.footprint +++ b/libfilezilla/.footprint @@ -53,4 +53,3 @@ lrwxrwxrwx root/root usr/lib/libfilezilla.so.11 -> libfilezilla.so.11.0.0 -rwxr-xr-x root/root usr/lib/libfilezilla.so.11.0.0 drwxr-xr-x root/root usr/lib/pkgconfig/ -rw-r--r-- root/root usr/lib/pkgconfig/libfilezilla.pc -drwxr-xr-x root/root usr/share/ diff --git a/libfilezilla/.signature b/libfilezilla/.signature index 5aec2028f..50b620c66 100644 --- a/libfilezilla/.signature +++ b/libfilezilla/.signature @@ -1,5 +1,5 @@ untrusted comment: verify with /etc/ports/contrib.pub -RWSagIOpLGJF3weOAMzbjlyoCw35VA+yzeqgU4MIn3wvqEy8eBd/S7b/hSyShFGFPwMjYmdFPNatFGzeiTTW25WGy+Bhmuqw5ws= -SHA256 (Pkgfile) = 289af7804ec48c61b07c51376ae373741b87669da138e52b7c3ddbc690a1cdec -SHA256 (.footprint) = 25907a762723ec2e617663ae3330ad0a5503135f8b25c0d6a9d1e6e5b6bc4d90 +RWSagIOpLGJF357TyN3LERK+v7rGCGC9At776l13fRy92xmGq0b/HGncXvrT5MATUvkEgHaBLiGmrMyeUh2tlQOyF5XPmpf/AQA= +SHA256 (Pkgfile) = e4a8d82df96ffea8499042ee354aea8a1fe9a02505dade8f043bd30b53a738f1 +SHA256 (.footprint) = f44050418aced8a289333e3fc78875b7b7372cf6b9ac85fb018128b785754628 SHA256 (libfilezilla-0.26.0.tar.bz2) = 17ed226593e8e466ce3c3f8ce583b36c79f163189ead54d631613cc3da5c80bd diff --git a/libfilezilla/Pkgfile b/libfilezilla/Pkgfile index 3a1650050..4b6556697 100644 --- a/libfilezilla/Pkgfile +++ b/libfilezilla/Pkgfile @@ -1,21 +1,22 @@ -# Description: filezilla common library -# URL: https://filezilla-project.org -# Maintainer: Tim Biermann, tbier at posteo dot de -# Depends on: clang gnutls libidn2 +# Description: Small and modern C++ library, which offers some basic functionalities +# URL: https://lib.filezilla-project.org/ +# Maintainer: UNMAINTAINED +# Depends on: gnutls name=libfilezilla version=0.26.0 -release=1 +release=2 source=(https://download.filezilla-project.org/$name/$name-$version.tar.bz2) build() { - cd $name-$version - export CC=clang CXX=clang++ AR=llvm-ar NM=llvm-nm RANLIB=llvm-ranlib - autoreconf -vfi - ./configure \ - --prefix=/usr \ - --disable-static - make - make DESTDIR=$PKG install - rm -rf $PKG/usr/share/locale + cd $name-$version + + ./configure \ + --prefix=/usr \ + --disable-doxygen-doc \ + --disable-locales \ + --disable-static \ + + make + make DESTDIR=$PKG install } |