diff options
author | Oliver Smith <ollieparanoid@bitmessage.ch> | 2018-07-06 17:45:45 +0000 |
---|---|---|
committer | Roberto Oliveira <robertoguimaraes8@gmail.com> | 2018-07-06 17:55:22 +0000 |
commit | 78d771789b3ccebc32962e36afc8ba890066805d (patch) | |
tree | 8c39d59a0dfc7ea04e20c8461d9fd2293c22e4a2 /community/xfce4-mixer/APKBUILD | |
parent | 2cdc428f604e840b5f76bbfc9de04b450eb0b94a (diff) | |
download | aports-78d771789b3ccebc32962e36afc8ba890066805d.tar.bz2 aports-78d771789b3ccebc32962e36afc8ba890066805d.tar.xz |
community/xfce4-mixer: fix build, modernize aport
This fixes the following build error:
In file included from xfce-plugin-dialog.c:35:0:
../libxfce4mixer/libxfce4mixer.h:27:28: fatal error: dbus/dbus-glib.h: No such file or directory
#include <dbus/dbus-glib.h>
Diffstat (limited to 'community/xfce4-mixer/APKBUILD')
-rw-r--r-- | community/xfce4-mixer/APKBUILD | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/community/xfce4-mixer/APKBUILD b/community/xfce4-mixer/APKBUILD index 8f308bdb9b..e5fae12f00 100644 --- a/community/xfce4-mixer/APKBUILD +++ b/community/xfce4-mixer/APKBUILD @@ -31,14 +31,12 @@ build() { --localstatedir=/var \ --disable-static \ --with-sound=alsa \ - || return 1 - make || return 1 + CFLAGS="$CFLAGS -I/usr/include/dbus-1.0" + make } package() { cd "$_builddir" - make DESTDIR="$pkgdir" install || return 1 + make DESTDIR="$pkgdir" install } -md5sums="1b3753b91224867a3a2dfddda239c28d xfce4-mixer-4.11.0.tar.bz2" -sha256sums="fb0c1df201ed1130f54f15b914cbe5a59286e994a137acda5609570c57112de2 xfce4-mixer-4.11.0.tar.bz2" sha512sums="0ef27ece0d5f46bd83db86d8e607d2dc34f4b0221679dbdeae4e4eb9993b30398a2e882b3a870af9928906330898935f2fe29e83442ba6f01b9e19d02ea6f66f xfce4-mixer-4.11.0.tar.bz2" |