mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-08-05 13:27:09 +02:00
36 lines
860 B
Plaintext
36 lines
860 B
Plaintext
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
|
|
pkgname=sysfsutils
|
|
pkgver=2.1.0
|
|
pkgrel=8
|
|
pkgdesc="System Utilities Based on Sysfs"
|
|
url="http://linux-diag.sourceforge.net/Sysfsutils.html"
|
|
arch="all"
|
|
options="!check" # No test suite.
|
|
license="GPL-2.0-only, LGPL-2.1-only"
|
|
depends=""
|
|
makedepends=""
|
|
subpackages="$pkgname-dev $pkgname-doc"
|
|
source="http://downloads.sourceforge.net/sourceforge/linux-diag/$pkgname-$pkgver.tar.gz"
|
|
|
|
prepare() {
|
|
cd "$builddir"
|
|
update_config_sub
|
|
default_prepare
|
|
}
|
|
|
|
build() {
|
|
cd "$builddir"
|
|
./configure \
|
|
--build=$CBUILD \
|
|
--host=$CHOST \
|
|
--prefix=/usr \
|
|
--mandir=/usr/share/man
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd "$builddir"
|
|
make DESTDIR="$pkgdir"/ install
|
|
}
|
|
sha512sums="485902d98b41a69343cb037883d0c0a1de8a1a4aed657cd4528fe10bc845ac51629657dff01deef042e57c9bd9243095e23fc931d06d74db31b03c5f0a18cf07 sysfsutils-2.1.0.tar.gz"
|