[arch-commits] Commit in arcus/repos (3 files)

Lukas Fleischer lfleischer at archlinux.org
Thu Dec 12 03:07:22 UTC 2019


    Date: Thursday, December 12, 2019 @ 03:07:21
  Author: lfleischer
Revision: 537128

db-move: moved arcus from [community-staging] to [community-testing] (x86_64)

Added:
  arcus/repos/community-testing-x86_64/
  arcus/repos/community-testing-x86_64/PKGBUILD
    (from rev 537127, arcus/repos/community-staging-x86_64/PKGBUILD)
Deleted:
  arcus/repos/community-staging-x86_64/

----------+
 PKGBUILD |   38 ++++++++++++++++++++++++++++++++++++++
 1 file changed, 38 insertions(+)

Copied: arcus/repos/community-testing-x86_64/PKGBUILD (from rev 537127, arcus/repos/community-staging-x86_64/PKGBUILD)
===================================================================
--- community-testing-x86_64/PKGBUILD	                        (rev 0)
+++ community-testing-x86_64/PKGBUILD	2019-12-12 03:07:21 UTC (rev 537128)
@@ -0,0 +1,38 @@
+# Maintainer: Jelle van der Waa <jelle at archlinux.org>
+# Contributor: Grey Christoforo <first name [at] last name [dot] net>
+
+# upstreamed renamed to libarcus
+pkgname=arcus
+pkgver=4.3.0
+pkgrel=5
+pkgdesc="Communication library between internal components for Ultimaker software"
+url="https://github.com/Ultimaker/libArcus"
+arch=('x86_64')
+license=('LGPL')
+makedepends=('cmake' 'sip')
+depends=('python' 'protobuf' 'python-sip')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/Ultimaker/libArcus/archive/${pkgver}.tar.gz")
+sha512sums=('b3893e3c422de85a6968443a6f26149e9dee9f15038c11c219693b9aa8d5174d908421e33c8e3ce4e4ecab8c5077da217b44a9ec6bb4b351ff67b7f2d42cc890')
+
+build() {
+  cd libArcus-${pkgver}
+  mkdir -p build
+  cd build
+  
+  cmake .. \
+  -DCMAKE_INSTALL_PREFIX=/usr \
+  -DCMAKE_BUILD_TYPE=Release \
+  -DBUILD_EXAMPLES=OFF  \
+  -DCMAKE_INSTALL_LIBDIR=/usr/lib/
+
+  make
+}
+
+package() {
+  cd libArcus-${pkgver}/build
+  make DESTDIR="${pkgdir}" install
+
+  install -Dm644 "${srcdir}/libArcus-${pkgver}/LICENSE" "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+}
+
+# vim:set ts=2 sw=2 et:



More information about the arch-commits mailing list