libzip: 1.5.2 -> 1.6.1

This commit is contained in:
Danny Rawlins 2020-02-07 22:35:30 +11:00
parent b88b895019
commit 56dc7f24b4
3 changed files with 20 additions and 17 deletions

View File

@ -6,12 +6,12 @@ drwxr-xr-x root/root usr/bin/
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/lib64/
lrwxrwxrwx root/root usr/lib64/libzip.so -> libzip.so.5
lrwxrwxrwx root/root usr/lib64/libzip.so.5 -> libzip.so.5.0
-rwxr-xr-x root/root usr/lib64/libzip.so.5.0
drwxr-xr-x root/root usr/lib64/pkgconfig/
-rw-r--r-- root/root usr/lib64/pkgconfig/libzip.pc
drwxr-xr-x root/root usr/lib/
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
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/
drwxr-xr-x root/root usr/share/man/
drwxr-xr-x root/root usr/share/man/man1/
@ -59,6 +59,7 @@ drwxr-xr-x root/root usr/share/man/man3/
-rw-r--r-- root/root usr/share/man/man3/zip_file_rename.3.gz
-rw-r--r-- root/root usr/share/man/man3/zip_file_replace.3.gz
-rw-r--r-- root/root usr/share/man/man3/zip_file_set_comment.3.gz
-rw-r--r-- root/root usr/share/man/man3/zip_file_set_dostime.3.gz
-rw-r--r-- root/root usr/share/man/man3/zip_file_set_encryption.3.gz
-rw-r--r-- root/root usr/share/man/man3/zip_file_set_external_attributes.3.gz
-rw-r--r-- root/root usr/share/man/man3/zip_file_set_mtime.3.gz

View File

@ -1,5 +1,5 @@
untrusted comment: verify with /etc/ports/contrib.pub
RWSagIOpLGJF3+qaPUoNfVd0XQ2AgpeIuRhDLmgtD3vEz4Sgr9Pb8VfPq/0dluxm0MYy+a1iLQB6P2R2QJNgAJ77tcdFhUdkvwo=
SHA256 (Pkgfile) = 057c913c057efe484f7d165149f0b6f9903f389febdeed03115455387ec509a3
SHA256 (.footprint) = 3843c3ceec12ee369dcd0e0b0cf89439cf79575402ed380f7c6f575a6b504426
SHA256 (libzip-1.5.2.tar.xz) = b3de4d4bd49a01e0cab3507fc163f88e1651695b6b9cb25ad174dbe319d4a3b4
RWSagIOpLGJF35CSpFiDWGGUGLIc+KVdLXCs3I6nlDw0b0KWVUY+8jTmn3WAzJiogDNAXMbwlekACbsUnYPNHYZUD3oNVabuQwE=
SHA256 (Pkgfile) = a75983a68af61be870b4e7d132ebc1036c7f3cef31bd7eb404526eb921908d04
SHA256 (.footprint) = 94589b38ba6fd541a961fd04c62bf290c1567b31a28acdcaa5b810a81eed4ddf
SHA256 (libzip-1.6.1.tar.xz) = 705dac7a671b3f440181481e607b0908129a9cf1ddfcba75d66436c0e7d33641

View File

@ -1,20 +1,22 @@
# Description: Library to handle zip files
# URL: http://nih.at/libzip/
# URL: https://nih.at/libzip/
# Maintainer: Alan Mizrahi, alan at mizrahi dot com dot ve
# Depends on: cmake
name=libzip
version=1.5.2
version=1.6.1
release=1
source=(
http://nih.at/$name/$name-$version.tar.xz
)
source=(https://nih.at/$name/$name-$version.tar.xz)
build() {
cd $name-$version
cmake . \
mkdir build
cd build
cmake .. \
-DCMAKE_BUILD_TYPE=Release \
-DCMAKE_INSTALL_PREFIX=/usr
-DCMAKE_INSTALL_PREFIX=/usr \
-DCMAKE_INSTALL_LIBDIR=lib
make DESTDIR=$PKG install
}