[arch-commits] Commit in libical/repos/extra-x86_64 (PKGBUILD PKGBUILD)

Jan Steffens heftig at archlinux.org
Mon Mar 19 08:17:42 UTC 2018


    Date: Monday, March 19, 2018 @ 08:17:41
  Author: heftig
Revision: 319629

archrelease: copy trunk to extra-x86_64

Added:
  libical/repos/extra-x86_64/PKGBUILD
    (from rev 319628, libical/trunk/PKGBUILD)
Deleted:
  libical/repos/extra-x86_64/PKGBUILD

----------+
 PKGBUILD |   74 ++++++++++++++++++++++++++++++++-----------------------------
 1 file changed, 39 insertions(+), 35 deletions(-)

Deleted: PKGBUILD
===================================================================
--- PKGBUILD	2018-03-19 08:16:59 UTC (rev 319628)
+++ PKGBUILD	2018-03-19 08:17:41 UTC (rev 319629)
@@ -1,35 +0,0 @@
-# Maintainer: Lukas Fleischer <lfleischer at archlinux.org>
-# Contributor: Andrea Scarpino <andrea at archlinux.org>
-# Contributor: Pierre Schmitz <pierre at archlinux.de>
-
-pkgname=libical
-pkgver=3.0.1
-pkgrel=1
-pkgdesc="An open source reference implementation of the icalendar data type and serialization format"
-arch=('x86_64')
-url='https://github.com/libical/libical'
-license=('LGPL' 'MPL')
-depends=('glibc' 'glib2' 'icu' 'db')
-makedepends=('cmake' 'gobject-introspection')
-source=("${pkgname}-${pkgver}.tar.gz::https://github.com/${pkgname}/${pkgname}/archive/v${pkgver}.tar.gz")
-sha256sums=('6405964d596aac64fc82c03c4486387fd6a9c09b1f7af1ff251238e66b9e66e1')
-
-prepare() {
-  mkdir build
-}
-
-build() {
-  cd build
-
-  cmake ../"${pkgname}-${pkgver}" \
-    -DCMAKE_BUILD_TYPE=Release \
-    -DSHARED_ONLY=true \
-    -DCMAKE_INSTALL_PREFIX=/usr \
-    -DCMAKE_INSTALL_LIBDIR=/usr/lib
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR="${pkgdir}" install
-}

Copied: libical/repos/extra-x86_64/PKGBUILD (from rev 319628, libical/trunk/PKGBUILD)
===================================================================
--- PKGBUILD	                        (rev 0)
+++ PKGBUILD	2018-03-19 08:17:41 UTC (rev 319629)
@@ -0,0 +1,39 @@
+# Maintainer: Lukas Fleischer <lfleischer at archlinux.org>
+# Contributor: Andrea Scarpino <andrea at archlinux.org>
+# Contributor: Pierre Schmitz <pierre at archlinux.de>
+
+pkgname=libical
+pkgver=3.0.3
+pkgrel=1
+pkgdesc="An open source reference implementation of the icalendar data type and serialization format"
+arch=('x86_64')
+url='https://github.com/libical/libical'
+license=('LGPL' 'MPL')
+depends=('glibc' 'glib2' 'icu' 'db')
+makedepends=('cmake' 'ninja')
+source=("${pkgname}-${pkgver}.tar.gz::https://github.com/${pkgname}/${pkgname}/archive/v${pkgver}.tar.gz")
+sha256sums=('ef9f64540332c2aeb57f299a73c3b0de136f733ae61a281f449013159da94e7c')
+
+prepare() {
+  mkdir build
+}
+
+build() {
+  cd build
+
+  cmake ../"${pkgname}-${pkgver}" \
+    -G Ninja \
+    -DCMAKE_BUILD_TYPE=Release \
+    -DSHARED_ONLY=true \
+    -DCMAKE_INSTALL_PREFIX=/usr \
+    -DCMAKE_INSTALL_LIBDIR=/usr/lib
+  ninja
+}
+
+check() {
+  ninja -C build test
+}
+
+package() {
+  DESTDIR="${pkgdir}" ninja -C build install
+}



More information about the arch-commits mailing list