mirror of
https://github.com/bertptrs/aur.git
synced 2025-12-27 13:30:31 +01:00
Initial version.
This commit is contained in:
14
.SRCINFO
Normal file
14
.SRCINFO
Normal file
@@ -0,0 +1,14 @@
|
|||||||
|
pkgbase = pscircle
|
||||||
|
pkgdesc = visualizes Linux processes in a form of radial tree
|
||||||
|
pkgver = 1.3.0
|
||||||
|
pkgrel = 1
|
||||||
|
url = https://gitlab.com/mildlyparallel/pscircle
|
||||||
|
arch = x86_64
|
||||||
|
license = GPL2
|
||||||
|
makedepends = meson
|
||||||
|
depends = cairo
|
||||||
|
source = https://gitlab.com/mildlyparallel/pscircle/-/archive/v1.3.0/pscircle-v1.3.0.tar.gz
|
||||||
|
sha256sums = 960e85219f42b633a4e663d3910082a8a2c27e80e02c7a525665910b6b210a81
|
||||||
|
|
||||||
|
pkgname = pscircle
|
||||||
|
|
||||||
27
PKGBUILD
Normal file
27
PKGBUILD
Normal file
@@ -0,0 +1,27 @@
|
|||||||
|
# Maintainer: Bert Peters <bert@bertptrs.nl>
|
||||||
|
pkgname=pscircle
|
||||||
|
pkgver=1.3.0
|
||||||
|
pkgrel=1
|
||||||
|
pkgdesc="visualizes Linux processes in a form of radial tree"
|
||||||
|
arch=(x86_64)
|
||||||
|
url="https://gitlab.com/mildlyparallel/pscircle"
|
||||||
|
depends=('cairo')
|
||||||
|
makedepends=('meson')
|
||||||
|
license=('GPL2')
|
||||||
|
source=("$url/-/archive/v$pkgver/$pkgname-v$pkgver.tar.gz")
|
||||||
|
sha256sums=('960e85219f42b633a4e663d3910082a8a2c27e80e02c7a525665910b6b210a81')
|
||||||
|
|
||||||
|
build() {
|
||||||
|
cd "$pkgname-v$pkgver"
|
||||||
|
mkdir -p build
|
||||||
|
cd build
|
||||||
|
meson --prefix /usr ..
|
||||||
|
ninja
|
||||||
|
}
|
||||||
|
|
||||||
|
package() {
|
||||||
|
cd "$pkgname-v$pkgver/build"
|
||||||
|
DESTDIR="$pkgdir" ninja install
|
||||||
|
install -Dt "$pkgdir/usr/lib/systemd/user" -m644 ../examples/pscircle.service
|
||||||
|
install -Dt "$pkgdir/usr/share/$pkgname/examples" -m755 ../examples/*.sh
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user