blob: 5fd71c70ed3e6d607438d204f82383a6269daab3 (
plain)
1 # Description: Fake time preload library, report faked system time to programs without having to change the system-wide time.
2 # URL: https://github.com/wolfcw/libfaketime
3 # Maintainer: Danny Rawlins, crux at romster dot me
4
5 name=libfaketime
6 version=0.9.8
7 release=1
8 source=(https://github.com/wolfcw/$name/archive/v$version/$name-v$version.tar.gz)
9
10 build() {
11 cd libfaketime-$version
12
13 make PREFIX=/usr
14 make PREFIX=/usr DESTDIR=$PKG install
15
16 rm -r $PKG/usr/share/doc
17 }
|