libzip: 1.7.0

This commit is contained in:
Juergen Daubert 2020-06-12 12:18:29 +02:00
parent e400a217ed
commit 477598f577
3 changed files with 21 additions and 13 deletions

View File

@ -7,9 +7,15 @@ drwxr-xr-x root/root usr/include/
-rw-r--r-- root/root usr/include/zip.h
-rw-r--r-- root/root usr/include/zipconf.h
drwxr-xr-x root/root usr/lib/
drwxr-xr-x root/root usr/lib/cmake/
drwxr-xr-x root/root usr/lib/cmake/libzip/
-rw-r--r-- root/root usr/lib/cmake/libzip/libzip-config.cmake
-rw-r--r-- root/root usr/lib/cmake/libzip/libzip-targets-release.cmake
-rw-r--r-- root/root usr/lib/cmake/libzip/libzip-targets.cmake
-rw-r--r-- root/root usr/lib/cmake/libzip/libzip-version.cmake
lrwxrwxrwx root/root usr/lib/libzip.so -> libzip.so.5
lrwxrwxrwx root/root usr/lib/libzip.so.5 -> libzip.so.5.1
-rwxr-xr-x root/root usr/lib/libzip.so.5.1
lrwxrwxrwx root/root usr/lib/libzip.so.5 -> libzip.so.5.3
-rwxr-xr-x root/root usr/lib/libzip.so.5.3
drwxr-xr-x root/root usr/lib/pkgconfig/
-rw-r--r-- root/root usr/lib/pkgconfig/libzip.pc
drwxr-xr-x root/root usr/share/
@ -24,9 +30,11 @@ drwxr-xr-x root/root usr/share/man/man3/
-rw-r--r-- root/root usr/share/man/man3/zip_add.3.gz
-rw-r--r-- root/root usr/share/man/man3/zip_add_dir.3.gz
-rw-r--r-- root/root usr/share/man/man3/zip_close.3.gz
-rw-r--r-- root/root usr/share/man/man3/zip_compression_method_supported.3.gz
-rw-r--r-- root/root usr/share/man/man3/zip_delete.3.gz
-rw-r--r-- root/root usr/share/man/man3/zip_dir_add.3.gz
-rw-r--r-- root/root usr/share/man/man3/zip_discard.3.gz
-rw-r--r-- root/root usr/share/man/man3/zip_encryption_method_supported.3.gz
-rw-r--r-- root/root usr/share/man/man3/zip_error_clear.3.gz
-rw-r--r-- root/root usr/share/man/man3/zip_error_code_system.3.gz
-rw-r--r-- root/root usr/share/man/man3/zip_error_code_zip.3.gz
@ -44,6 +52,7 @@ drwxr-xr-x root/root usr/share/man/man3/
-rw-r--r-- root/root usr/share/man/man3/zip_fclose.3.gz
-rw-r--r-- root/root usr/share/man/man3/zip_fdopen.3.gz
-rw-r--r-- root/root usr/share/man/man3/zip_file_add.3.gz
-rw-r--r-- root/root usr/share/man/man3/zip_file_attributes_init.3.gz
-rw-r--r-- root/root usr/share/man/man3/zip_file_error_clear.3.gz
-rw-r--r-- root/root usr/share/man/man3/zip_file_error_get.3.gz
-rw-r--r-- root/root usr/share/man/man3/zip_file_extra_field_delete.3.gz

View File

@ -1,5 +1,5 @@
untrusted comment: verify with /etc/ports/opt.pub
RWSE3ohX2g5d/WE1ybtc95fFY8A7/o7T78R2EJC+/CWiegJ9ve1Y1Xm+8sJOsmZR5OmjIK3M5OMO4X6nxfXf+Nr6vYAICJWYHAQ=
SHA256 (Pkgfile) = f0fc216d0ee9f9cd85e9fa10ad2367a3d9937ea651ea7c302a37da467ad2d44a
SHA256 (.footprint) = 94589b38ba6fd541a961fd04c62bf290c1567b31a28acdcaa5b810a81eed4ddf
SHA256 (libzip-1.6.1.tar.xz) = 705dac7a671b3f440181481e607b0908129a9cf1ddfcba75d66436c0e7d33641
RWSE3ohX2g5d/ZHezd9wINArZZ3GyKLj/G1YjDnVEIwvNZbRaG3wYI8TB6a2+Iv2GJFD3wUJUPbSxUT0bbJ87cJ25FF9tz8cvgg=
SHA256 (Pkgfile) = e9bfc9fffb93bf2f685fa71eb87f8b0f1235f9050516ee22a9649bc87d97b1a6
SHA256 (.footprint) = 89d1e47bf43faa716c204af869a418c7219570988f1b0e8d2fd450926071b1a4
SHA256 (libzip-1.7.0.tar.xz) = d26b2952426d2518f3db5cdeda4fe3cd668fc5bb38a598781e4d1d3f7f8ca7be

View File

@ -1,21 +1,20 @@
# Description: Library to handle zip files
# URL: http://nih.at/libzip/
# URL: http://ibzip.org
# Maintainer: Alan Mizrahi, alan at mizrahi dot com dot ve
# Depends on: cmake xz zlib bzip2 openssl
name=libzip
version=1.6.1
version=1.7.0
release=1
source=(http://nih.at/$name/$name-$version.tar.xz)
source=(https://libzip.org/download/$name-$version.tar.xz)
build() {
cd $name-$version
cmake . \
cmake -S$name-$version -Bbuild \
-DCMAKE_BUILD_TYPE=Release \
-DCMAKE_INSTALL_PREFIX=/usr \
-DCMAKE_INSTALL_LIBDIR=/usr/lib \
-DENABLE_GNUTLS=OFF
make DESTDIR=$PKG install
cmake --build build
DESTDIR=$PKG cmake --install build
}