19 lines
583 B
Plaintext
19 lines
583 B
Plaintext
# Description: Fake time preload library, report faked system time to programs without having to change the system-wide time.
|
|
# URL: http://www.code-wizards.com/projects/libfaketime/index.html
|
|
# Maintainer: Danny Rawlins, romster at shortcircuit dot net dot au
|
|
# Packager: Danny Rawlins, romster at shortcircuit dot net dot au
|
|
# Depends on:
|
|
|
|
name=libfaketime
|
|
version=0.5
|
|
release=1
|
|
source=(http://www.code-wizards.com/projects/$name/$name-$version.tar.gz)
|
|
|
|
build() {
|
|
cd $name-$version
|
|
make
|
|
install -D $name.so.1 $PKG/usr/lib/$name.so.1
|
|
ln -sf $name.so.1 $PKG/usr/lib/$name.so
|
|
}
|
|
|