blob: 7666d2f9027ca41246b54067946c1bfc1a7ad125 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
# Maintainer: develux <erroor234@gmail.com>
pkgname=topmem-cpp-git
pkgver=r41.83500b8
pkgrel=1
pkgdesc="It shows the top 10 processes using RAM and SWAP"
arch=('x86_64')
url="https://github.com/develux44/topmem-cpp"
license=('GPL-3.0-only')
makedepends=(gcc git)
conflicts=(topmem-cpp)
provides=("topmem-cpp=${pkgver}")
source=("git+https://github.com/develux44/topmem-cpp.git")
options=(strip !docs !debug lto)
sha256sums=('SKIP')
pkgver() {
cd topmem-cpp
printf "r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short=7 HEAD)"
}
build() {
cd topmem-cpp
make
}
package() {
cd topmem-cpp
install -Dm755 topmem $pkgdir/usr/bin/topmem
}
|