[arch-commits] Commit in quazip/repos/extra-x86_64 (PKGBUILD PKGBUILD)
Antonio Rojas
arojas at archlinux.org
Mon May 27 16:51:07 UTC 2019
Date: Monday, May 27, 2019 @ 16:51:06
Author: arojas
Revision: 354406
archrelease: copy trunk to extra-x86_64
Added:
quazip/repos/extra-x86_64/PKGBUILD
(from rev 354405, quazip/trunk/PKGBUILD)
Deleted:
quazip/repos/extra-x86_64/PKGBUILD
----------+
PKGBUILD | 73 ++++++++++++++++++++++++++-----------------------------------
1 file changed, 32 insertions(+), 41 deletions(-)
Deleted: PKGBUILD
===================================================================
--- PKGBUILD 2019-05-27 16:50:40 UTC (rev 354405)
+++ PKGBUILD 2019-05-27 16:51:06 UTC (rev 354406)
@@ -1,41 +0,0 @@
-# Maintainer: Jaroslav Lichtblau <svetlemodry at archlinux.org>
-# Contributor: Felix Yan <felixonmars at archlinux.org>
-# Contributor: Andrea Scarpino <andrea at archlinux.org>
-# Contributor: trya <tryagainprod at gmail.com>
-
-pkgname=quazip
-pkgver=0.7.6
-pkgrel=1
-pkgdesc="C++ wrapper for the Gilles Vollant's ZIP/UNZIP C package"
-url="https://stachenov.github.io/quazip/"
-license=('LGPL')
-arch=('x86_64')
-depends=('qt5-base')
-makedepends=('cmake')
-provides=('quazip-qt5')
-source=($pkgname-$pkgver.tar.gz::https://github.com/stachenov/$pkgname/archive/$pkgver.tar.gz)
-sha256sums=('4118a830a375a81211956611cc34b1b5b4ddc108c126287b91b40c2493046b70')
-
-prepare() {
- # Fix cmake module install dir
- sed -e 's|${CMAKE_ROOT}/Modules|${CMAKE_INSTALL_PREFIX}/lib/cmake/QuaZip|' -i $pkgname-$pkgver/CMakeLists.txt
-}
-
-build() {
- cd "${srcdir}"
-
- install -d build
- cd build
- cmake ../$pkgname-$pkgver \
- -DCMAKE_INSTALL_PREFIX=/usr \
- -DBUILD_WITH_QT4:BOOL=OFF \
- -DCMAKE_CXX_FLAGS="$CFLAGS -fPIC"
- make
-}
-
-package() {
- cd "${srcdir}"
-
- cd build
- make DESTDIR="${pkgdir}" install
-}
Copied: quazip/repos/extra-x86_64/PKGBUILD (from rev 354405, quazip/trunk/PKGBUILD)
===================================================================
--- PKGBUILD (rev 0)
+++ PKGBUILD 2019-05-27 16:51:06 UTC (rev 354406)
@@ -0,0 +1,32 @@
+# Maintainer: Jaroslav Lichtblau <svetlemodry at archlinux.org>
+# Contributor: Felix Yan <felixonmars at archlinux.org>
+# Contributor: Andrea Scarpino <andrea at archlinux.org>
+# Contributor: trya <tryagainprod at gmail.com>
+
+pkgname=quazip
+pkgver=0.8.1
+pkgrel=1
+pkgdesc="C++ wrapper for the Gilles Vollant's ZIP/UNZIP C package"
+url="https://stachenov.github.io/quazip/"
+license=(LGPL)
+arch=(x86_64)
+depends=(qt5-base)
+makedepends=(cmake)
+source=($pkgname-$pkgver.tar.gz::https://github.com/stachenov/$pkgname/archive/v$pkgver.tar.gz)
+sha256sums=('4fda4d4248e08015b5090d0369ef9e68bdc4475aa12494f7c0f6d79e43270d14')
+
+prepare() {
+ mkdir -p build
+}
+
+build() {
+ cd build
+ cmake ../$pkgname-$pkgver \
+ -DCMAKE_INSTALL_PREFIX=/usr
+ make
+}
+
+package() {
+ cd build
+ make DESTDIR="$pkgdir" install
+}
More information about the arch-commits
mailing list