# Maintainer: Que Quotion # Contributor: Maxime Gauduin pkgname=wingpanel-standalone-git pkgver=r321.d95e3a6 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-evbox.patch') sha256sums=('SKIP' '92220350b702dcfa0586ff5400909c89173f75feb50847b7176bf5f9714a8a1b' 'cea553913c2f44ad73886642f01abd2b21bbccb19d8dc2eb271d89a39cb20dc7' '47934e9aff119cedcfe7d184078ad60d3d715e07f1ca7cb1715e50b2e0c517e8' 'b1902c1d44ac546df63cd0224a7d2ef2cb6394ca556512c30c370d387db7bbab' '3bb9fce8ba4834bfaad30fcf4dc22283814f8c8b0c90939f5f9279c8eb9a746f') pkgver() { cd wingpanel echo "r$(git rev-list --count HEAD).$(git rev-parse --short HEAD)" } prepare() { cd wingpanel #Standalone patches msg2 "minus background manager" patch -Np2 < ../minus-backgroundmanager.patch msg2 "minus gala plugin" patch -Np2 < ../minus-galaplugin.patch msg2 "minus gala" patch -Np2 < ../minus-gala.patch #autohide #msg2 "autohide" #patch -Np2 < ../autohide-evbox.patch #Cogl can't be found when not using gala's cmake package; wtf? msg2 "minus cogl" 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: