mirror of
https://github.com/mac-a-r0ni/crux-xfce4.git
synced 2025-02-03 02:52:20 +01:00
24 lines
614 B
Plaintext
24 lines
614 B
Plaintext
# Description: A library to get system-specific data such as CPU and memory usage and information about running processes
|
|
# URL: https://developer.gnome.org/libgtop/stable/
|
|
# Packager: Matt Housh, jaeger at crux dot ninja
|
|
# Maintainer: jolupa, jlpavon at me dot com
|
|
# Depends on: glib gobject-introspection
|
|
|
|
name=libgtop
|
|
version=2.40.0
|
|
release=1
|
|
source=(http://ftp.gnome.org/pub/gnome/sources/$name/${version:0:4}/$name-$version.tar.xz)
|
|
|
|
build() {
|
|
cd $name-$version
|
|
|
|
./configure --prefix=/usr \
|
|
--disable-nls
|
|
|
|
make
|
|
make DESTDIR=$PKG install
|
|
|
|
rm -r $PKG/usr/share/{gtk-doc,info}
|
|
}
|
|
# vim: set ts=2 et:
|