diff options
author | Leo <thinkabit.ukim@gmail.com> | 2019-07-21 00:43:40 -0300 |
---|---|---|
committer | Leo <thinkabit.ukim@gmail.com> | 2019-07-21 01:03:10 -0300 |
commit | 4488eb52f455d98a9c1cc0252a497237b48e651c (patch) | |
tree | acfd4a01ccdc25b4e55ea4450f0e6fbf6ac9a368 /community | |
parent | 67d26b1101c9b34e05e92f0e73b8f5ed2b0a5783 (diff) | |
download | aports-4488eb52f455d98a9c1cc0252a497237b48e651c.tar.bz2 aports-4488eb52f455d98a9c1cc0252a497237b48e651c.tar.xz |
community/udisks2: add dependency on dbus
It depends on dbus to run services.
Fixes https://gitlab.alpinelinux.org/alpine/aports/issues/9922
Diffstat (limited to 'community')
-rw-r--r-- | community/udisks2/APKBUILD | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/community/udisks2/APKBUILD b/community/udisks2/APKBUILD index a63b0de6c7..633a2213d6 100644 --- a/community/udisks2/APKBUILD +++ b/community/udisks2/APKBUILD @@ -3,11 +3,12 @@ # Maintainer: Natanael Copa <ncopa@alpinelinux.org> pkgname=udisks2 pkgver=2.8.3 -pkgrel=0 +pkgrel=1 pkgdesc="A Disk Manager" url="https://www.freedesktop.org/wiki/Software/udisks/" arch="all" license="GPL-2.0-or-later" +depends="dbus" depends_dev="gobject-introspection-dev polkit-dev libatasmart-dev libgudev-dev acl-dev" makedepends="$depends_dev glib-dev intltool gtk-doc linux-headers libblockdev-dev @@ -19,7 +20,6 @@ source="https://github.com/storaged-project/udisks/releases/download/udisks-$pkg builddir="$srcdir"/udisks-$pkgver build() { - cd "$builddir" ./configure \ --build=$CBUILD \ --host=$CHOST \ @@ -38,12 +38,10 @@ build() { } check() { - cd "$builddir" make check } package() { - cd "$builddir" make DESTDIR="$pkgdir" install rm -f "$pkgdir"/usr/lib/*.a } |