mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-24 02:22:13 +08:00
30 lines
838 B
Bash
30 lines
838 B
Bash
#
|
|
# Packages for Chakra, part of chakra-project.org
|
|
#
|
|
# maintainer (i686): Phil Miller <philm[at]chakra-project[dog]org>
|
|
# maintainer (x86_64): Manuel Tortosa <manutortosa[at]chakra-project[dot]org>
|
|
# contributor (x86_64): Giuseppe Calà <jiveaxe@gmail.com>
|
|
|
|
# include global config
|
|
source ../_buildscripts/${current_repo}-${_arch}-cfg.conf
|
|
|
|
pkgname=arora
|
|
pkgver=0.11.0
|
|
pkgrel=2
|
|
pkgdesc='A cross platform web browser built using Qt and WebKit'
|
|
url='http://www.arora-browser.org'
|
|
license=('GPL')
|
|
arch=('i686' 'x86_64')
|
|
depends=('qt' 'openssl' 'xdg-utils')
|
|
categories=('network')
|
|
install='arora.install'
|
|
source=("http://arora.googlecode.com/files/arora-${pkgver}.tar.gz")
|
|
md5sums=('64334ce4198861471cad9316d841f0cb')
|
|
|
|
build() {
|
|
cd $srcdir/$pkgname-$pkgver
|
|
qmake PREFIX="/usr" "CONFIG-=debug" -r
|
|
make
|
|
make INSTALL_ROOT=$pkgdir install
|
|
}
|