libfaketime: 0.9.1 -> 0.9.8

This commit is contained in:
Danny Rawlins 2019-12-30 14:25:29 +11:00
parent fb3542a5d4
commit c8f7cf8f5a
3 changed files with 15 additions and 20 deletions

View File

@ -2,10 +2,10 @@ drwxr-xr-x root/root usr/
drwxr-xr-x root/root usr/bin/
-rwxr-xr-x root/root usr/bin/faketime
drwxr-xr-x root/root usr/lib/
lrwxrwxrwx root/root usr/lib/libfaketime.so -> libfaketime.so.1
-rw-r--r-- root/root usr/lib/libfaketime.so.1
lrwxrwxrwx root/root usr/lib/libfaketimeMT.so -> libfaketimeMT.so.1
-rw-r--r-- root/root usr/lib/libfaketimeMT.so.1
drwxr-xr-x root/root usr/man/
drwxr-xr-x root/root usr/man/man1/
-rw-r--r-- root/root usr/man/man1/faketime.1.gz
drwxr-xr-x root/root usr/lib/faketime/
-rw-r--r-- root/root usr/lib/faketime/libfaketime.so.1
-rw-r--r-- root/root usr/lib/faketime/libfaketimeMT.so.1
drwxr-xr-x root/root usr/share/
drwxr-xr-x root/root usr/share/man/
drwxr-xr-x root/root usr/share/man/man1/
-rw-r--r-- root/root usr/share/man/man1/faketime.1.gz

View File

@ -1,5 +1,5 @@
untrusted comment: verify with /etc/ports/contrib.pub
RWSagIOpLGJF3ySw+R5oqIgrjitN9SWSUa0qBV3vCGG9pqGazxi4PlgWob1IIKcggFUoyiEwr6H35xnNrUg1jdduA6DqZ6D9rgo=
SHA256 (Pkgfile) = 04c6b4e1ab99b940179bcb10766da7115dfa850a4f1a5f4a2016b1c9347945b5
SHA256 (.footprint) = 4f0b8ff021e50f98a49bd9c119cdcf3b1dd519e411dc270d59314b769c9dcab6
SHA256 (libfaketime-0.9.1.tar.gz) = ec3d5b5dcc1de408a9e86afa5dadcca35371c395b7435bf3c2ba5dc89627b43a
RWSagIOpLGJF32xo5miMISM7qsmdETGiKjoiJdEuiT/xwrZf5YbgSUUzrRZxhSVj1pgxLor7fxwByZpB0Uct7muzu/kmd1lPXgc=
SHA256 (Pkgfile) = 9ddd90b967702852b75092162665621585d886053dde6edaf079fbfbcef39428
SHA256 (.footprint) = 07d18d00172586cac8ba536dece7e9cd8a820711724db5f5d1008efada5d5058
SHA256 (libfaketime-v0.9.8.tar.gz) = 06288237cd5890eca148489e5b904ed852ed0ffa8424bfb479342f4daa8442a3

View File

@ -1,22 +1,17 @@
# 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
# URL: https://github.com/wolfcw/libfaketime
# Maintainer: Danny Rawlins, crux at romster dot me
# Packager: Danny Rawlins, crux at romster dot me
name=libfaketime
version=0.9.1
version=0.9.8
release=1
source=(http://www.code-wizards.com/projects/libfaketime/libfaketime-$version.tar.gz)
source=(https://github.com/wolfcw/$name/archive/v$version/$name-v$version.tar.gz)
build() {
cd libfaketime-$version
sed -i -e 's|/share/man/|/man/|g' man/Makefile
sed -i -e 's|/lib/faketime/|/lib/|g' src/Makefile
make PREFIX=/usr
make PREFIX=/usr DESTDIR=$PKG install
ln -sf libfaketime.so.1 $PKG/usr/lib/libfaketime.so
ln -sf libfaketimeMT.so.1 $PKG/usr/lib/libfaketimeMT.so
rm -r $PKG/usr/share/doc
}