mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-01-04 08:12:06 +01:00
46 lines
1.3 KiB
Plaintext
46 lines
1.3 KiB
Plaintext
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
|
|
pkgname=cpulimit
|
|
pkgver=0.2
|
|
pkgrel=0
|
|
pkgdesc="CPU usage limiter for Linux"
|
|
url="https://github.com/opsengine/cpulimit"
|
|
arch="all"
|
|
license="GPL2+"
|
|
depends=""
|
|
depends_dev=""
|
|
makedepends="$depends_dev"
|
|
install=""
|
|
subpackages=""
|
|
source="$pkgname-$pkgver.tar.gz::https://github.com/opsengine/cpulimit/archive/v$pkgver.tar.gz
|
|
no-sysctl.patch
|
|
"
|
|
|
|
_builddir="$srcdir"/cpulimit-$pkgver
|
|
|
|
prepare() {
|
|
local i
|
|
cd "$_builddir"
|
|
for i in $source; do
|
|
case $i in
|
|
*.patch) msg $i; patch -p1 -i "$srcdir"/$i || return 1;;
|
|
esac
|
|
done
|
|
}
|
|
|
|
build() {
|
|
cd "$_builddir"
|
|
make || return 1
|
|
}
|
|
|
|
package() {
|
|
cd "$_builddir"
|
|
install -Dm755 src/cpulimit "$pkgdir"/usr/bin/cpulimit
|
|
}
|
|
|
|
md5sums="ac86cd54173251223fb89b14a73ae37c cpulimit-0.2.tar.gz
|
|
3190926c02130090757376f0b4f2b73d no-sysctl.patch"
|
|
sha256sums="64312f9ac569ddcadb615593cd002c94b76e93a0d4625d3ce1abb49e08e2c2da cpulimit-0.2.tar.gz
|
|
9b4118a5a77d2884ea38d657bac6dcf54232e990537c1fb73fbb4a852423d508 no-sysctl.patch"
|
|
sha512sums="73c973f3b86cdc225054c742ddb205ce0378817695531e3e8e45053c50d2d9762f3a15adbfffc8fc2b91f96ce9c9dbf8a9ad4e7ce4cf214f349859b298683b47 cpulimit-0.2.tar.gz
|
|
13ddc48d810bdc28131babb653a06bd8ec25c6108fdbd34f2901c977d6fa6102d5e9c142e5a357711304272c97c2adb7fbf17164f0efdf4b4433ad271af9d09b no-sysctl.patch"
|