Date: Saturday, November 5, 2022 @ 23:01:42
Author: arojas
Revision: 460734
archrelease: copy trunk to extra-x86_64
Added:
libkolabxml/repos/extra-x86_64/PKGBUILD
(from rev 460733, libkolabxml/trunk/PKGBUILD)
Deleted:
libkolabxml/repos/extra-x86_64/PKGBUILD
----------+
PKGBUILD | 59 ++++++++++++++++++++++++++---------------------------------
1 file changed, 26 insertions(+), 33 deletions(-)
Deleted: PKGBUILD
===================================================================
--- PKGBUILD 2022-11-05 23:01:33 UTC (rev 460733)
+++ PKGBUILD 2022-11-05 23:01:42 UTC (rev 460734)
@@ -1,33 +0,0 @@
-# Maintainer: Felix Yan <[email protected]>
-# Contributor: Andrea Scarpino <[email protected]>
-
-pkgname=libkolabxml
-pkgver=1.1.6
-pkgrel=19
-pkgdesc="Kolab XML Format Schema Definitions Library"
-url='https://www.kolab.org/'
-arch=('x86_64')
-license=('GPL')
-depends=('xerces-c' 'boost-libs')
-makedepends=('cmake' 'boost' 'xsd' 'swig')
-source=("https://mirror.kolabenterprise.com/pub/releases/${pkgname}-${pkgver}.tar.gz"{,.gpg})
-sha512sums=('ae74a9276cad2840db09ae9f9178991eb22137a13f83c04dd2fb7513407f2a5e6b7c79d71de80ced786457f1d3c8b5229226aecd8ea139f0af7125268aff4121'
-
'defc0ae0261182fc8c535bee0598b9d303c2b1373b005b6e6a214f50135534e15b4f0c132d3d78fe093896494c10a381b0569dee350c7843aa60a9de3af0906f')
-
-prepare() {
- mkdir build
-}
-
-build() {
- cd build
- cmake ../${pkgname}-${pkgver} \
- -DCMAKE_INSTALL_PREFIX=/usr \
- -DBUILD_TESTS=OFF \
- -DBoost_NO_BOOST_CMAKE=ON
- make
-}
-
-package() {
- cd build
- make DESTDIR="${pkgdir}" install
-}
Copied: libkolabxml/repos/extra-x86_64/PKGBUILD (from rev 460733,
libkolabxml/trunk/PKGBUILD)
===================================================================
--- PKGBUILD (rev 0)
+++ PKGBUILD 2022-11-05 23:01:42 UTC (rev 460734)
@@ -0,0 +1,26 @@
+# Maintainer: Felix Yan <[email protected]>
+# Contributor: Andrea Scarpino <[email protected]>
+
+pkgname=libkolabxml
+pkgver=1.2.1
+pkgrel=1
+pkgdesc="Kolab XML Format Schema Definitions Library"
+url='https://www.kolab.org/'
+arch=('x86_64')
+license=('GPL')
+depends=('xerces-c' 'boost-libs')
+makedepends=('cmake' 'boost' 'xsd' 'swig')
+source=(https://cgit.kolab.org/libkolabxml/snapshot/libkolabxml-libkolabxml-$pkgver.tar.gz)
+sha512sums=('a4967d84b57d4c637dcc36383f05dbb20fe2ba5e590235eac219ece33e15d29f5eb51e9501a4f9e277900fdec18ddd390e6dc564bf79663bb3513de07f04d39a')
+
+build() {
+ cmake -B build -S $pkgname-$pkgname-$pkgver \
+ -DCMAKE_INSTALL_PREFIX=/usr \
+ -DBUILD_TESTS=OFF \
+ -DBoost_NO_BOOST_CMAKE=ON
+ cmake --build build
+}
+
+package() {
+ DESTDIR="$pkgdir" cmake --install build
+}