[arch-commits] Commit in libldm/repos (3 files)
Evangelos Foutras
foutrelis at gemini.archlinux.org
Sun Mar 6 15:29:46 UTC 2022
Date: Sunday, March 6, 2022 @ 15:29:46
Author: foutrelis
Revision: 1142370
archrelease: copy trunk to community-staging-x86_64
Added:
libldm/repos/community-staging-x86_64/
libldm/repos/community-staging-x86_64/PKGBUILD
(from rev 1142369, libldm/trunk/PKGBUILD)
libldm/repos/community-staging-x86_64/ldmtool.service
(from rev 1142369, libldm/trunk/ldmtool.service)
-----------------+
PKGBUILD | 64 ++++++++++++++++++++++++++++++++++++++++++++++++++++++
ldmtool.service | 13 ++++++++++
2 files changed, 77 insertions(+)
Copied: libldm/repos/community-staging-x86_64/PKGBUILD (from rev 1142369, libldm/trunk/PKGBUILD)
===================================================================
--- community-staging-x86_64/PKGBUILD (rev 0)
+++ community-staging-x86_64/PKGBUILD 2022-03-06 15:29:46 UTC (rev 1142370)
@@ -0,0 +1,64 @@
+# 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.5
+pkgrel=2
+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
+ libreadline.so
+ libuuid.so
+ zlib
+)
+makedepends=(
+ git
+ systemd
+ gtk-doc
+)
+provides=(
+ ldmtool
+ libldm-1.0.so
+)
+conflicts=(ldmtool)
+_tag=aa60557dc59b7aeeda5aaf694c71b7649340ab2f
+source=(
+ git+https://github.com/mdbooth/libldm.git#tag=${_tag}
+ ldmtool.service
+)
+b2sums=('SKIP'
+ 'fa03762f3642959b8abd50e62f79cc23e0dfca49c7c7d661c38d49fd5282d5bd95ccf5b66562a7b005657312b4f4f72e92c4e75365f007ca09e8199b7ba9802a')
+
+pkgver() {
+ cd libldm
+
+ git describe --tags | sed 's/^libldm-//; s/-/.r/; s/-g/./'
+}
+
+prepare() {
+ cd libldm
+ autoreconf -fiv
+}
+
+build() {
+ cd libldm
+ ./configure \
+ --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:
Copied: libldm/repos/community-staging-x86_64/ldmtool.service (from rev 1142369, libldm/trunk/ldmtool.service)
===================================================================
--- community-staging-x86_64/ldmtool.service (rev 0)
+++ community-staging-x86_64/ldmtool.service 2022-03-06 15:29:46 UTC (rev 1142370)
@@ -0,0 +1,13 @@
+[Unit]
+Description=Windows Dynamic Disk Mount
+Before=local-fs-pre.target
+DefaultDependencies=no
+
+[Service]
+Type=simple
+User=root
+ExecStart=/usr/bin/ldmtool create all
+
+[Install]
+WantedBy=local-fs-pre.target
+
More information about the arch-commits
mailing list