mirror of
https://github.com/mac-a-r0ni/lxqt.git
synced 2025-01-15 11:12:20 +01:00
f9e44c8274
most of them anyway...
24 lines
511 B
Plaintext
24 lines
511 B
Plaintext
# Description: A library that provides cross platform access to statistics about the system on which it's run
|
|
# URL: https://www.i-scream.org/libstatgrab
|
|
# Maintainer: Jay Lanagan, j at lngn dot net
|
|
# Depends on: perl
|
|
|
|
name=libstatgrab
|
|
version=0.92.1
|
|
release=1
|
|
|
|
source=(https://github.com/$name/$name/releases/download/LIBSTATGRAB_0_92_1/$name-$version.tar.gz)
|
|
|
|
build() {
|
|
|
|
cd $name-$version
|
|
|
|
./configure --prefix=/usr
|
|
make
|
|
|
|
make DESTDIR="$PKG" install
|
|
|
|
rm -r $PKG/usr/lib/*.la
|
|
rm -rf $PKG/usr/share/doc
|
|
}
|