On Mon, 7 Nov 2016 13:13:17 +0100, Christopher Arndt wrote:
Am 07.11.2016 um 12:31 schrieb J. C.:
that did look interesting, but I can't
compile it, possibly the
source code is a little deprecated. Still thanks a lot, it would
have done.
On Debian/Ubuntu it's in the package archives as "timemachine".
I still have a PKGBUILD available.
You could change the version and release, if required fix the
dependencies and simply replace the checksums with
"sha256sums=('SKIP')", but seemingly 0.3.3 is still the latest version.
Maybe libsndfile is part of the dependency chain, if not, who cares,
if you anyway have it installed.
[rocketmouse@archlinux ~]$ cat /var/aur3/timemachine/PKGBUILD
# Contributor: DonVla <donvla(a)users.sourceforge.net>
pkgname=timemachine
pkgver=0.3.3
pkgrel=3
pkgdesc="A quick one-click audio file recorder for JACK audio applications"
arch=('i686' 'x86_64')
url="http://plugin.org.uk/timemachine/"
license=('GPL')
depends=('jack' 'gtk2')
source=(http://plugin.org.uk/timemachine/${pkgname}-${pkgver}.tar.gz)
md5sums=('6f26d1c4bac96b36dfe743bcc07bfe53')
sha256sums=('3e798a952b83874e3d60642ca4a7e0c2e2990c4659561009087da95044b21f9d')
build() {
cd ${srcdir}/${pkgname}-${pkgver}
LDFLAGS="-lm" CFLAGS="$SLKCFLAGS" CXXFLAGS="$SLKCFLAGS"
./configure --prefix=/usr
make
}
package() {
cd ${srcdir}/${pkgname}-${pkgver}
make DESTDIR=${pkgdir} install
}
Regards,
Ralf