# Maintainer: Que Quotion # Contributor: Maxime Gauduin pkgname=wingpanel-standalone-git pkgver=r351.ce82b43 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' 'edce8ae7810a0782cabb0a7cbe7857c47502ca11595d11a26c1d24234f76a54a' 'fa564fa2ce3da51adf4babaaa7dda4a18b1ce900acaf5e19df81d49b593200e3' '47934e9aff119cedcfe7d184078ad60d3d715e07f1ca7cb1715e50b2e0c517e8' 'b1902c1d44ac546df63cd0224a7d2ef2cb6394ca556512c30c370d387db7bbab' 'da77ed83459b7d49056f35b9de1dd8b487b3c51234911f43b2fa401a38b6dd4a') 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='lib' \ -DGSETTINGS_COMPILE='FALSE' make } package() { cd wingpanel/build make DESTDIR="${pkgdir}" install } # vim: ts=2 sw=2 et: