blob: 9c94e3c05b3553a4d8ae795f004409fff01d2b5a (
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
|
# Maintainer: Chocobo1 <chocobo1 AT archlinux DOT net>
pkgname=stalld
pkgver=1.17.0
pkgrel=1
pkgdesc="A daemon to prevent the starvation of operating system threads"
arch=('i686' 'x86_64')
url="https://git.kernel.org/pub/scm/utils/stalld/stalld.git/"
license=('GPL2')
depends=('glibc')
source=("https://git.kernel.org/pub/scm/utils/stalld/stalld.git/snapshot/stalld-$pkgver.tar.gz")
sha256sums=('07ee5cb8a8277edfbf15a77fec5184493f6ebb5dad9c25b13e11f2df78ea3d07')
prepare() {
cd "stalld-$pkgver"
sed -i 's|$(SOPTS)||;s|LDFLAGS :=|LDFLAGS := $(LDFLAGS)|' "Makefile"
}
build() {
cd "stalld-$pkgver"
make
}
package() {
cd "stalld-$pkgver"
make DESTDIR="$pkgdir" install
install -Dm644 "redhat/stalld.service" -t "$pkgdir/usr/lib/systemd/system"
}
|