mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-02-10 10:34:38 +08:00
24 lines
548 B
Bash
24 lines
548 B
Bash
|
pkgname=pacmanlogviewer
|
||
|
pkgver=1.2
|
||
|
pkgrel=1
|
||
|
pkgdesc="Inspect pacman log file."
|
||
|
arch=('x86_64')
|
||
|
url=('https://opendesktop.org/content/show.php?content=150484')
|
||
|
license=('GPL')
|
||
|
depends=('qt')
|
||
|
makedepends=('qt')
|
||
|
categories=('system')
|
||
|
source=("http://qt-apps.org/CONTENT/content-files/150484-$pkgname-$pkgver.tar.gz")
|
||
|
|
||
|
md5sums=('43a612a0495f74113d091007880c2f3c')
|
||
|
|
||
|
screenshot=('https://opendesktop.org/CONTENT/content-pre1/150484-1.png')
|
||
|
|
||
|
package() {
|
||
|
cd "$srcdir/$pkgname-$pkgver"
|
||
|
qmake
|
||
|
make
|
||
|
make INSTALL_ROOT="$pkgdir" install
|
||
|
}
|
||
|
|