# Maintainer: Que Quotion # Contributor: Maxime Gauduin pkgname=wingpanel-standalone-git pkgver=r346.61c4f9f pkgrel=1 pkgdesc='Stylish top panel that holds indicators and spawns an application launcher (without Gala dependencies)' arch=('i686' 'x86_64') url='https://github.com/elementary/wingpanel' license=('GPL3') groups=('pantheon-unstable' 'pantheon-qq') depends=('glib2' 'glibc' 'gtk3' 'libgee' 'mutter' 'libgranite.so') makedepends=('cmake' 'git' 'granite-git' 'vala') optdepends=("pantheon-applications-menu-git: Application launcher" wingpanel-indicator-{a11y,bluetooth,datetime,keyboard,network,notifications,power,session,sound}-git": Tray applet" "wingpanel-indicator-ayatana-git: Unity 7 Tray applets" "indicator-powersave: On the fly power savings and performance toggles" "glippy-indicator: Excellent clipboard manager applet" "indicator-sensors: Sensors readout applet" "ubuntu-indicator-weather: Simple weather applet") provides=(wingpanel{,{,-standalone}-bzr,-git} 'libwingpanel-2.0.so') conflicts=('wingpanel') replaces=('wingpanel-standalone-bzr') source=('git+https://github.com/elementary/wingpanel.git' 'minus-backgroundmanager.patch' 'minus-galaplugin.patch' 'minus-gala.patch' 'y-is-broken-cogl.patch' 'autohide.patch') sha256sums=('SKIP' '37b3853f5e8a84a4d86c392beb0b422e03c71c7c53519f49883bfa5550979ae8' 'e56bc3b154539b6ae2ca7494f46f6f68c55f167b73203b92d645839bf8e9a5ea' '47934e9aff119cedcfe7d184078ad60d3d715e07f1ca7cb1715e50b2e0c517e8' 'b1902c1d44ac546df63cd0224a7d2ef2cb6394ca556512c30c370d387db7bbab' '7c0bdc8418111c4cc2d74c8c2e2a658ff4c7446f316f0e4e4b823e77a7247598') pkgver() { cd wingpanel echo "r$(git rev-list --count HEAD).$(git rev-parse --short HEAD)" } prepare() { cd wingpanel #Autohide msg2 "Autohide" patch -Np2 < ../autohide.patch #patch -Np2 < ../autohide-testing.patch #Standalone patches msg2 "Remove background manager (Gala dependent)" patch -Np2 < ../minus-backgroundmanager.patch msg2 "Remove Gala plugin" patch -Np2 < ../minus-galaplugin.patch msg2 "Remove Gala dependency" patch -Np2 < ../minus-gala.patch #Cogl can't be found when not using gala's cmake package; wtf? msg2 "Remove CoglFixes (broken)" patch -Np2 < ../y-is-broken-cogl.patch if [[ -d build ]]; then rm -rf build fi mkdir build } build() { cd wingpanel/build cmake .. \ -DCMAKE_BUILD_TYPE='Release' \ -DCMAKE_INSTALL_PREFIX='/usr' \ -DCMAKE_INSTALL_LIBDIR='/usr/lib' \ -DGSETTINGS_COMPILE='FALSE' make } package() { cd wingpanel/build make DESTDIR="${pkgdir}" install } # vim: ts=2 sw=2 et: