mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-24 02:22:13 +08:00
33 lines
917 B
Bash
33 lines
917 B
Bash
pkgname=kchmviewer
|
|
pkgver=7.5
|
|
pkgrel=2
|
|
pkgdesc="A .chm files (MS HTML help file format) viewer"
|
|
arch=('x86_64')
|
|
url="http://kchmviewer.sourceforge.net/"
|
|
license=('GPL')
|
|
depends=('desktop-file-utils' 'chmlib' 'xdg-utils' 'libzip' 'qt5-webkit')
|
|
makedepends=('qt5-tools')
|
|
categories=('office')
|
|
options=('libtool')
|
|
install=${pkgname}.install
|
|
source=("$pkgname-$pkgver::http://downloads.sourceforge.net/${pkgname}/${pkgname}-${pkgver}.tar.gz")
|
|
sha256sums=('c81f8fb7ac1fe8a5284e03b0d91def61cbd5638f2276c5de8046251755352e53')
|
|
|
|
build() {
|
|
cd $pkgname-$pkgver
|
|
|
|
qmake-qt5 PREFIX=/usr
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd $pkgname-$pkgver
|
|
|
|
# make DISTDIR="${pkgdir}" install
|
|
|
|
install -Dm755 bin/$pkgname "${pkgdir}"/usr/bin/$pkgname
|
|
#icon/desktop file
|
|
install -Dm644 packages/$pkgname.png "${pkgdir}"/usr/share/pixmaps/$pkgname.png
|
|
install -Dm644 packages/$pkgname.desktop "${pkgdir}"/usr/share/applications/$pkgname.desktop
|
|
}
|