27 lines
671 B
Bash
27 lines
671 B
Bash
|
# Template file for 'zeal'
|
||
|
pkgname=zeal
|
||
|
version=20141123
|
||
|
revision=1
|
||
|
build_wrksrc=zeal
|
||
|
hostmakedepends="qt5-qmake"
|
||
|
makedepends="qt5-devel qt5-webkit-devel xcb-util-keysyms-devel libarchive-devel"
|
||
|
depends="bsdtar qt5-plugin-sqlite"
|
||
|
short_desc="Simple offline API documentation browser"
|
||
|
maintainer="Farhad Shahbazi <grauwolf@geekosphere.org>"
|
||
|
license="GPL-3"
|
||
|
homepage="http://zealdocs.org/"
|
||
|
distfiles="https://github.com/zealdocs/${pkgname}/archive/${version}.tar.gz"
|
||
|
checksum=bbe2e1d7dfaaad9a399eb78932464d4bd3d1da80cd0751fca897264437b6dd5d
|
||
|
|
||
|
do_configure() {
|
||
|
qmake CONFIG+=no_libappindicator
|
||
|
}
|
||
|
|
||
|
do_build() {
|
||
|
make
|
||
|
}
|
||
|
|
||
|
do_install() {
|
||
|
make INSTALL_ROOT=${DESTDIR} install
|
||
|
}
|