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 <[email protected]> +# Contributor: Chris Severance <[email protected]> +# Contributor: Neal Buchanan <[email protected]> + +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 +
