diff --git a/xdg-dbus-proxy/.footprint b/xdg-dbus-proxy/.footprint index c022c7a01..9fea3453c 100644 --- a/xdg-dbus-proxy/.footprint +++ b/xdg-dbus-proxy/.footprint @@ -1,7 +1,3 @@ drwxr-xr-x root/root usr/ drwxr-xr-x root/root usr/bin/ -rwxr-xr-x root/root usr/bin/xdg-dbus-proxy -drwxr-xr-x root/root usr/share/ -drwxr-xr-x root/root usr/share/man/ -drwxr-xr-x root/root usr/share/man/man1/ --rw-r--r-- root/root usr/share/man/man1/xdg-dbus-proxy.1.gz diff --git a/xdg-dbus-proxy/.signature b/xdg-dbus-proxy/.signature index 5df92b7e2..7e5a1c31c 100644 --- a/xdg-dbus-proxy/.signature +++ b/xdg-dbus-proxy/.signature @@ -1,5 +1,5 @@ untrusted comment: verify with /etc/ports/contrib.pub -RWSagIOpLGJF371yjH7DwhnVFl7VI9qCMw7C38IEeqIT05tqUPEd//ttjKN/+O4Ye3oOgF/YOeZ9kh4/hzRTkW0iABAX4RMqXAk= -SHA256 (Pkgfile) = ea50f4c47f5436a8bc9a95a4bf489e7c0a400caf1fc427e3ae3e64c2e33809f3 -SHA256 (.footprint) = cae13179fb579c50dac65b2344315a515ad9ac3a38a736f93644aa4b5d1a0dc6 +RWSagIOpLGJF3wz3mjQV0GKxCBa+AE3z0xwhbo8nnPW+Pp5ezMt2oK5bc7COjqPSRh5Nm0V1R3CFP/3WJ8yZwm2Pfx/VoiVXaAo= +SHA256 (Pkgfile) = 121a4180fc3bf0e888b40c08d71f316c0c933c2afd8e86da0036c29c551fd013 +SHA256 (.footprint) = 66eb8bfe0dba2360ced52629dad371fe5f769b0200d7c574ab1ba7413a9ffcf4 SHA256 (xdg-dbus-proxy-0.1.4.tar.xz) = 1ec0eab53d1e49966d722352bcfd51ac402dce5190baedc749a8541e761670ab diff --git a/xdg-dbus-proxy/Pkgfile b/xdg-dbus-proxy/Pkgfile index f9bf29cc7..b1cf7d3ba 100644 --- a/xdg-dbus-proxy/Pkgfile +++ b/xdg-dbus-proxy/Pkgfile @@ -1,17 +1,23 @@ -# Description: D-Bus proxy +# Description: filtering proxy for D-Bus connections # URL: https://github.com/flatpak/xdg-dbus-proxy -# Maintainer: Danny Rawlins, crux at romster dot me -# Depends on: glib docbook-xsl +# Maintainer: Tim Biermann, tbier at posteo dot de +# Depends on: glib +# Optional: docbook-xsl name=xdg-dbus-proxy version=0.1.4 -release=1 +release=2 source=(https://github.com/flatpak/xdg-dbus-proxy/releases/download/$version/$name-$version.tar.xz) build() { - cd $name-$version + meson setup $name-$version build \ + --prefix=/usr \ + --buildtype=plain \ + --wrap-mode nodownload \ + -D b_lto=true \ + -D b_pie=true \ + -D tests=false - ./configure --prefix=/usr - make - make DESTDIR=$PKG install + meson compile -C build + DESTDIR=$PKG meson install -C build }