mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-24 02:22:13 +08:00
29 lines
644 B
Bash
29 lines
644 B
Bash
# Platform Packages for Chakra, part of chakra-project.org
|
|
#
|
|
# maintainer abveritas@chakra-project.org
|
|
|
|
pkgname=bootchart
|
|
pkgver=1.20
|
|
pkgrel=1
|
|
pkgdesc="Tool that collects and graphs the CPU and disk load of the system as it works"
|
|
url="https://github.com/sofar/bootchart"
|
|
license=('GPL2')
|
|
arch=('x86_64')
|
|
depends=('glibc')
|
|
source=("http://foo-projects.org/~sofar/${pkgname}/${pkgname}-${pkgver}.tar.gz")
|
|
md5sums=('071c67856a2b16e1a9e93a058de3eb65')
|
|
|
|
build() {
|
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
|
|
|
./configure --prefix=/usr --sbindir=/usr/bin
|
|
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd "$srcdir/${pkgname}-${pkgver}"
|
|
|
|
make DESTDIR="${pkgdir}" install
|
|
}
|