mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-01-30 04:52:27 +01:00
28 lines
791 B
Plaintext
28 lines
791 B
Plaintext
# Contributor: Rasmus Thomsen <oss@cogitri.dev>
|
|
# Maintainer: Rasmus Thomsen <oss@cogitri.dev>
|
|
pkgname=libfaketime
|
|
pkgver=0.9.9
|
|
pkgrel=0
|
|
pkgdesc="intercept system calls related to time and return user-defined values"
|
|
options="!check" # https://github.com/wolfcw/libfaketime/issues/259
|
|
url="https://github.com/wolfcw/libfaketime"
|
|
arch="all"
|
|
makedepends="coreutils"
|
|
license="GPL-2.0-or-later"
|
|
subpackages="$pkgname-doc"
|
|
source="$pkgname-$pkgver.tar.gz::https://github.com/wolfcw/libfaketime/archive/v$pkgver.tar.gz"
|
|
|
|
build() {
|
|
make
|
|
}
|
|
|
|
check() {
|
|
make -j1 test
|
|
}
|
|
|
|
package() {
|
|
make DESTDIR="$pkgdir" PREFIX="/usr" install
|
|
}
|
|
|
|
sha512sums="b1aecf456753ccf771f0f80c92d57ffcd2c8349dde93a575862b4570a06812d4bce104f2efbcfd627a85a80fed99dbc37cb156dda0389892bfb4e71df816191f libfaketime-0.9.9.tar.gz"
|