2013-10-10 22:45:07 +08:00
|
|
|
# maintainer abveritas@chakra-project.org
|
|
|
|
# Contributor: Sandro Andrade <sandroandrade at kde.org>
|
|
|
|
|
|
|
|
pkgname=snowshoe
|
|
|
|
pkgver=1.0
|
2014-05-18 16:04:15 +08:00
|
|
|
pkgrel=3
|
2013-10-10 22:45:07 +08:00
|
|
|
pkgdesc="Cross platform browser application with multiple user interfaces based on Qt5 and WebKit2 technologies"
|
|
|
|
arch=('x86_64')
|
|
|
|
url="http://snowshoe.openbossa.org/"
|
|
|
|
license=('LGPL')
|
|
|
|
depends=('qt5-quick1')
|
2014-05-18 16:04:15 +08:00
|
|
|
source=("${pkgname}-${pkgver}::git://gitorious.org/qt-apps/snowshoe.git")
|
|
|
|
md5sums=('SKIP')
|
2013-10-10 22:45:07 +08:00
|
|
|
|
|
|
|
build() {
|
2014-05-18 16:04:15 +08:00
|
|
|
cd $srcdir/${pkgname}-${pkgver}
|
2013-10-10 22:45:07 +08:00
|
|
|
|
2014-05-18 16:04:15 +08:00
|
|
|
[[ -d build ]] || mkdir build # check if directory "build" exist or create one
|
2013-10-10 22:45:07 +08:00
|
|
|
cd build
|
|
|
|
|
|
|
|
export QML_IMPORT_PATH=/usr/lib/qt5/imports/
|
|
|
|
|
|
|
|
/usr/lib/qt5/bin/qmake ../
|
|
|
|
make
|
|
|
|
}
|
|
|
|
|
|
|
|
package() {
|
2014-05-18 16:04:15 +08:00
|
|
|
cd $srcdir/${pkgname}-${pkgver}/build
|
2013-10-10 22:45:07 +08:00
|
|
|
make INSTALL_ROOT=${pkgdir} install
|
|
|
|
}
|
|
|
|
|