mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-24 18:42:12 +08:00
26 lines
638 B
Bash
26 lines
638 B
Bash
#
|
|
# Chakra Packages for Chakra, part of chakra-project.org
|
|
#
|
|
# maintainer abveritas@chakra-project.org
|
|
|
|
pkgname=pacmanlogviewer
|
|
pkgver=1.2.1
|
|
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=('21287050018718d8ec69f6d48fa5590a')
|
|
screenshot=('https://opendesktop.org/CONTENT/content-pre1/150484-1.png')
|
|
package() {
|
|
cd "$srcdir/$pkgname-$pkgver"
|
|
qmake
|
|
make
|
|
make INSTALL_ROOT="$pkgdir" install
|
|
}
|
|
|