ttyrec: fix missing ttytime
This commit is contained in:
parent
85103ea029
commit
1dcb27d8dc
1 changed files with 7 additions and 5 deletions
|
@ -1,12 +1,12 @@
|
||||||
# Template file for 'ttyrec'
|
# Template file for 'ttyrec'
|
||||||
pkgname=ttyrec
|
pkgname=ttyrec
|
||||||
version=1.0.8
|
version=1.0.8
|
||||||
revision=5
|
revision=6
|
||||||
|
short_desc="Record and playback activity on a tty"
|
||||||
|
maintainer="Enno Boland <gottox@voidlinux.org>"
|
||||||
|
license="BSD-4-Clause-UC"
|
||||||
homepage="http://0xcc.net/ttyrec"
|
homepage="http://0xcc.net/ttyrec"
|
||||||
distfiles="http://0xcc.net/ttyrec/${pkgname}-${version}.tar.gz"
|
distfiles="http://0xcc.net/ttyrec/${pkgname}-${version}.tar.gz"
|
||||||
short_desc="tty recorder and player"
|
|
||||||
maintainer="Enno Boland <gottox@voidlinux.org>"
|
|
||||||
license="BSD"
|
|
||||||
checksum=ef5e9bf276b65bb831f9c2554cd8784bd5b4ee65353808f82b7e2aef851587ec
|
checksum=ef5e9bf276b65bb831f9c2554cd8784bd5b4ee65353808f82b7e2aef851587ec
|
||||||
|
|
||||||
do_build() {
|
do_build() {
|
||||||
|
@ -14,8 +14,10 @@ do_build() {
|
||||||
make ${makejobs} CC=$CC CFLAGS="-DHAVE_openpty $CFLAGS" LDFLAGS="-lutil $LDFLAGS"
|
make ${makejobs} CC=$CC CFLAGS="-DHAVE_openpty $CFLAGS" LDFLAGS="-lutil $LDFLAGS"
|
||||||
}
|
}
|
||||||
do_install() {
|
do_install() {
|
||||||
for f in rec play; do
|
for f in rec play time; do
|
||||||
vbin tty${f}
|
vbin tty${f}
|
||||||
vman tty${f}.1
|
vman tty${f}.1
|
||||||
done
|
done
|
||||||
|
sed -n '1,32p' ttyrec.c > LICENSE
|
||||||
|
vlicense LICENSE
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue