mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
added extra/quazip
This commit is contained in:
parent
91c6b8c471
commit
c03068e789
1 changed files with 46 additions and 0 deletions
46
extra/quazip/PKGBUILD
Normal file
46
extra/quazip/PKGBUILD
Normal file
|
@ -0,0 +1,46 @@
|
|||
# Maintainer: Antonio Rojas <arojas@archlinux.org>
|
||||
# Maintainer: Jaroslav Lichtblau <svetlemodry@archlinux.org>
|
||||
# Contributor: Felix Yan <felixonmars@archlinux.org>
|
||||
# Contributor: Andrea Scarpino <andrea@archlinux.org>
|
||||
# Contributor: trya <tryagainprod@gmail.com>
|
||||
|
||||
# ALARM: Kevin Mihelich <kevin@archlinuxarm.org>
|
||||
# - explicitly set QT 5 version, doesn't auto-detect correctly
|
||||
|
||||
pkgbase=quazip
|
||||
pkgname=(quazip-qt5 quazip-qt6)
|
||||
pkgver=1.4
|
||||
pkgrel=1.1
|
||||
pkgdesc='C++ wrapper for the ZIP/UNZIP C package'
|
||||
url='https://stachenov.github.io/quazip/'
|
||||
license=(LGPL)
|
||||
arch=(x86_64)
|
||||
makedepends=(cmake qt5-base qt6-5compat)
|
||||
source=(https://github.com/stachenov/$pkgbase/archive/v$pkgver/$pkgbase-$pkgver.tar.gz)
|
||||
sha256sums=('79633fd3a18e2d11a7d5c40c4c79c1786ba0c74b59ad752e8429746fe1781dd6')
|
||||
|
||||
build() {
|
||||
cmake -B build5 -S $pkgbase-$pkgver \
|
||||
-DCMAKE_INSTALL_PREFIX=/usr \
|
||||
-DQUAZIP_QT_MAJOR_VERSION=5
|
||||
cmake --build build5
|
||||
|
||||
cmake -B build6 -S $pkgbase-$pkgver \
|
||||
-DCMAKE_INSTALL_PREFIX=/usr \
|
||||
-DQUAZIP_QT_MAJOR_VERSION=6
|
||||
cmake --build build6
|
||||
}
|
||||
|
||||
package_quazip-qt5() {
|
||||
depends=(qt5-base)
|
||||
provides=(quazip)
|
||||
replaces=(quazip)
|
||||
|
||||
DESTDIR="$pkgdir" cmake --install build5
|
||||
}
|
||||
|
||||
package_quazip-qt6() {
|
||||
depends=(qt6-5compat)
|
||||
|
||||
DESTDIR="$pkgdir" cmake --install build6
|
||||
}
|
Loading…
Reference in a new issue