# Maintainer: Brian Bidulock pkgname=xde-menu-git _pkgname=xde-menu pkgver=0.14.r1.g789ca5a pkgrel=1 pkgdesc="XDG compliant menu generator" arch=('i686' 'x86_64') url="https://github.com/bbidulock/xde-menu" groups=('xde-git') license=('GPL') provides=("${_pkgname}=${pkgver%%.r*}-${pkgrel}") conflicts=("${_pkgname}") depends=('libwnck+-git' 'libsm' 'gnome-menus') makedepends=('git' 'gdk-pixbuf-xlib') optdepends=('xdg-launch-git: for LW WM launch notification' 'xde-theme: for LW WM style and theme change support') source=("$pkgname::git+https://github.com/bbidulock/$_pkgname.git") md5sums=('SKIP') pkgver() { cd $pkgname git describe --long --tags | sed -E 's,^[^0-9]*,,;s,([^-]*-g),r\1,;s,-,.,g' } prepare() { cd $pkgname ./autogen.sh } build() { cd $pkgname # gtk2 is using deprecated glib2 declarations ./configure CFLAGS="-Wno-deprecated-declarations $CFLAGS" # Fight unused direct deps sed -i -e "s| -shared | $LDFLAGS\0 |g" -e "s| if test \"\$export_dynamic\" = yes && test -n \"\$export_dynamic_flag_spec\"; then| func_append compile_command \" $LDFLAGS\"\n func_append finalize_command \" $LDFLAGS\"\n\0|" libtool make CFLAGS="-Wno-deprecated-declarations $CFLAGS" } package() { make -C $pkgname DESTDIR="$pkgdir" install } # vim: et sw=2: