mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-02-11 10:34:38 +08:00
24 lines
494 B
Bash
24 lines
494 B
Bash
# Contributor: Neophytos Kolokotronis <tetris4@gmail.com>
|
|
|
|
pkgname=qupzilla
|
|
pkgver=1.0.1
|
|
pkgrel=2
|
|
pkgdesc="A very fast open source browser based on WebKit core"
|
|
url="http://qt-apps.org/content/show.php?content=145693"
|
|
arch=('i686' 'x86_64')
|
|
license=('GPL3')
|
|
depends=('qt')
|
|
source=(QupZilla.tar.gz)
|
|
md5sums=('4e7523e0651b6bc8925d8e75e52b5fcb')
|
|
|
|
build() {
|
|
cd $srcdir/QupZilla/src/
|
|
qmake QupZilla.pro
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd $srcdir/QupZilla/src/
|
|
make INSTALL_ROOT=$pkgdir install
|
|
|
|
} |