diff options
author | Johannes Löthberg <johannes@kyriasis.com> | 2014-08-16 15:29:58 +0200 |
---|---|---|
committer | Johannes Löthberg <johannes@kyriasis.com> | 2015-06-01 16:03:42 +0200 |
commit | 496107c3777e03e4d2a3127bbad2982dd7799b99 (patch) | |
tree | 5ce98304af013143946bd66f7ad0ae33654bbb21 /PKGBUILD | |
download | pkgbuilds-496107c3777e03e4d2a3127bbad2982dd7799b99.tar.xz |
dbus-user-session: import
Diffstat (limited to 'PKGBUILD')
-rw-r--r-- | PKGBUILD | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/PKGBUILD b/PKGBUILD new file mode 100644 index 0000000..9c6e4e3 --- /dev/null +++ b/PKGBUILD @@ -0,0 +1,28 @@ +pkgname=dbus-user-session +pkgver=0.0.1 +pkgrel=1 + +pkgdesc="systemd user service for dbus user bus" +url="https://theos.kyriasis.com/~kyrias" +arch=('any') +license=('custom:ISC') + +depends=('systemd') + +install=dbus-user-session.install +source=('dbus.socket' 'dbus.service' 'dbus.conf' 'LICENSE') + +md5sums=('ae97fbcba9621d6f423193b2d67b7f52' + 'c3693a827f1d9559ecd692f19d465d01' + '43535857bf82111dd9f8b9a0413a6e20' + 'da3b313446e8f10915bb07cd36531c49') + +package() { + install -D dbus.socket "$pkgdir"/etc/systemd/user/dbus.socket + install -D dbus.service "$pkgdir"/etc/systemd/user/dbus.service + + # Dropin for the user@.service that sets the correct DBUS_SESSION_BUS_ADDRESS + install -D dbus.conf "$pkgdir"/etc/systemd/system/user@.service.d/dbus.conf + + install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/dbus-user-session/LICENSE +} |