Skip to content

Commit

Permalink
Add hawaii-shell
Browse files Browse the repository at this point in the history
  • Loading branch information
plfiorini committed Mar 11, 2015
1 parent 3a460ec commit c03add9
Showing 1 changed file with 45 additions and 0 deletions.
45 changes: 45 additions & 0 deletions hawaii-shell/PKGBUILD
@@ -0,0 +1,45 @@
# Maintainer: Pier Luigi Fiorini <pierluigi.fiorini@gmail.com>

pkgname=hawaii-shell
pkgver=0.3.90
pkgrel=1
pkgdesc="Hawaii Shell"
arch=('i686' 'x86_64' 'armv6h' 'armv7h')
url="https://github.com/hawaii-desktop"
license=('GPL', 'LGPL')
depends=('qt5-tools' 'qt5-quickcontrols' 'qt5-graphicaleffects' 'qt5-svg'
'greenisland' 'pam' 'libpulse'
'kdoctools' 'kdelibs4support' 'krunner' 'kwayland' 'plasma-framework' 'plasma-workspace' 'plasma-nm'
'ttf-dejavu' 'ttf-droid')
optdepends=('weston: nested mode support'
'pulseaudio: audio support'
'hawaii-icon-themes: icon theme'
'hawaii-wallpapers: wallpapers')
makedepends=('gdb' 'extra-cmake-modules')
conflicts=('hawaii-shell-git')
groups=('hawaii')
options=('debug')
source=("https://github.com/hawaii-desktop/${pkgname}/archive/v${pkgver}.tar.gz")
md5sums=('5d7fc54c2757beebeee6ab658ff91313')

prepare() {
mkdir -p build
}

build() {
cd build
cmake ../${pkgname}-${pkgver} \
-DCMAKE_INSTALL_PREFIX=/usr \
-DLIB_INSTALL_DIR=lib \
-DLIBEXEC_INSTALL_DIR=lib \
-DQML_INSTALL_DIR=lib/qt/qml \
-DKDE_INSTALL_USE_QT_SYS_PATHS=ON \
-DQtWaylandScanner_EXECUTABLE=/usr/lib/qt/bin/qtwaylandscanner \
-DCMAKE_BUILD_TYPE=RelWithDebInfo
make VERBOSE=1
}

package() {
cd build
make DESTDIR="${pkgdir}" install
}

0 comments on commit c03add9

Please sign in to comment.