blob: a433af21000022f565379b3c38a39d5d02991600 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
|
# Maintainer: Chris Severance aur.severach aATt spamgourmet dott com
# Contributor: speps <speps at aur dot archlinux dot org>
set -u
_name='cpulimit'
pkgname='limitcpu'
pkgver='3.1'
pkgrel='1'
pkgdesc="A simple ${_name} program that attempts to limit the CPU usage of a process, expressed in percentage."
arch=('i686' 'x86_64')
url="https://sourceforge.net/projects/${pkgname}/"
license=("GPL-2.0-only")
depends=('glibc')
_verwatch=("https://sourceforge.net/projects/${pkgname}/rss" "\s*<title>.*/${_name}-\([0-9\.]\+\)\.tar\.gz\].*" 'f')
source=("http://downloads.sourceforge.net/sourceforge/${pkgname}/${_name}-${pkgver}.tar.gz")
md5sums=('5c35ac33347f468efc87ffd8dbc05ed2')
sha256sums=('946994ec60f39f03095b89bd74e660b89c14c82aba7545669398e302bc7b234c')
prepare() {
set -u
cd "${_name}-${pkgver}"
# rename to limitcpu to not conflict
# with cpulimit in [community]
mv "${_name}.c" "${pkgbase}.c"
sed -i -e "s|${_name}|${pkgbase}|g" 'Makefile'
if [ -f "${_name}.1.gz" ]; then
zcat "${_name}.1.gz" | sed -e "s|${_name}|${pkgbase}|g" | gzip -9 > "${pkgbase}.1.gz"
rm -f "${_name}.1.gz"
elif [ -f "${_name}.1" ]; then
sed -e "s|${_name}|${pkgbase}|g" "${_name}.1" > "${pkgbase}.1"
rm -f "${_name}.1"
fi
set +u
}
build() {
set -u
cd "${_name}-${pkgver}"
make -s -j1
set +u
}
package() {
set -u
cd "${_name}-${pkgver}"
make PREFIX="${pkgdir}/usr" install
set +u
}
set +u
|