1
0
forked from ports/contrib

22 lines
675 B
Plaintext
Raw Normal View History

2020-04-29 16:20:38 +00:00
# Description: C++ wrapper for the Gilles Vollant's ZIP/UNZIP C package
# URL: https://stachenov.github.io/quazip/
# Maintainer: Tim Biermann, tbier at posteo dot de
# Depends on: qt5
name=quazip5
2020-05-24 14:08:56 +00:00
version=0.9.1
2020-04-29 16:20:38 +00:00
release=1
source=(https://github.com/stachenov/quazip/archive/v$version/$name-$version.tar.gz)
build() {
2020-06-01 15:56:43 +00:00
cmake -Squazip-$version -Bbuild -GNinja \
2020-04-29 16:20:38 +00:00
-DCMAKE_INSTALL_PREFIX=/usr
cmake --build build
2020-07-08 13:01:36 +00:00
DESTDIR=$PKG cmake --install build
2020-04-29 16:20:38 +00:00
cd $SRC/quazip-$version/quazip
qmake quazip.pro
make pkgconfig/quazip.pc
install -Dm644 pkgconfig/quazip.pc $PKG/usr/lib/pkgconfig/quazip5.pc
sed -e 's!-lquazip!-lquazip5!' -i $PKG/usr/lib/pkgconfig/quazip5.pc
}