[arch-commits] Commit in (4 files)

Maxime Gauduin alucryd at archlinux.org
Tue Sep 4 08:49:52 UTC 2018


    Date: Tuesday, September 4, 2018 @ 08:49:52
  Author: alucryd
Revision: 376559

Add libldm

Added:
  libldm/
  libldm/trunk/
  libldm/trunk/PKGBUILD
  libldm/trunk/ldmtool.service

-----------------+
 PKGBUILD        |   36 ++++++++++++++++++++++++++++++++++++
 ldmtool.service |    9 +++++++++
 2 files changed, 45 insertions(+)

Added: libldm/trunk/PKGBUILD
===================================================================
--- libldm/trunk/PKGBUILD	                        (rev 0)
+++ libldm/trunk/PKGBUILD	2018-09-04 08:49:52 UTC (rev 376559)
@@ -0,0 +1,36 @@
+# $Id$
+# Maintainer: Maxime Gauduin <alucryd at archlinux.org>
+# Contributor: Chris Severance <aur.severach at spamgourmet.com>
+# Contributor: Neal Buchanan <neal.buchanan at gmx.com>
+
+pkgname=libldm
+pkgver=0.2.4
+pkgrel=1
+pkgdesc='A tool and library for managing Microsoft Windows Dynamic Disks'
+arch=('x86_64')
+url='https://github.com/mdbooth/libldm'
+license=('GPL3' 'LGPL3')
+depends=('device-mapper' 'glib2' 'json-glib' 'zlib'
+         'libreadline.so' 'libuuid.so')
+makedepends=('git' 'gtk-doc')
+provides=('ldmtool' 'libldm-1.0.so')
+conflicts=('ldmtool')
+source=("git+https://github.com/mdbooth/libldm.git#tag=libldm-${pkgver}"
+        'ldmtool.service')
+sha256sums=('SKIP'
+            '7feca8b7b8561b2572e23c82a889fd665a25aabddfed336caf13c4bcb053d99e')
+
+build() {
+  cd libldm
+
+  ./autogen.sh \
+    --prefix='/usr'
+  make
+}
+
+package() {
+  make DESTDIR="${pkgdir}" -C libldm install
+  install -Dm 644 ldmtool.service -t "${pkgdir}"/usr/lib/systemd/system/
+}
+
+# vim: ts=2 sw=2 et:


Property changes on: libldm/trunk/PKGBUILD
___________________________________________________________________
Added: svn:keywords
## -0,0 +1 ##
+Id
\ No newline at end of property
Added: libldm/trunk/ldmtool.service
===================================================================
--- libldm/trunk/ldmtool.service	                        (rev 0)
+++ libldm/trunk/ldmtool.service	2018-09-04 08:49:52 UTC (rev 376559)
@@ -0,0 +1,9 @@
+[Unit]
+Description=Windows Dynamic Disks Mount
+Before=local-fs-pre.target
+DefaultDependencies=no
+
+[Service]
+Type=oneshot
+ExecStart=/usr/bin/ldmtool create all
+



More information about the arch-commits mailing list