You are not logged in.
LossyWAV 1.40 is released and finally the source code too. Anyone up for adding it to Yaourt/Pacman (if possible)?
Source code is available in the first over at http://www.hydrogenaud.io/forums/index. … opic=96635
Offline
Mod note: Moved to AUR issues.
This source code is for Windows only. You'll need to request that the developer port it to linux. There is a comment after the 'windows.h' include that says "For now" which may suggest they have plans to port it - but until that happens, we can't put together a PKGBUILD.
Last edited by Trilby (2014-10-02 17:56:17)
"UNIX is simple and coherent" - Dennis Ritchie; "GNU's Not Unix" - Richard Stallman
Offline
It is finally ported to Linux! https://github.com/MoSal/lossywav-for-posix
The following url is the topic over at Hydrogenaudio talking about the porting: http://www.hydrogenaud.io/forums/index. … 107774&hl=
Offline
pkgname=lossywav-git
pkgver=1.4.0p.r0.g0c8343e
pkgrel=1
pkgdesc='Near-lossless audio processor'
arch=('i686' 'x86_64')
url='https://github.com/MoSal/lossywav-for-posix'
license=('custom')
source=('lossywav-for-posix::git+https://github.com/MoSal/lossywav-for-posix.git')
md5sums=('SKIP')
pkgver() {
cd ${srcdir}/lossywav-for-posix
git describe --long | sed -r 's/([^-]*-g)/r\1/;s/-/./g'
}
build() {
cd ${srcdir}/lossywav-for-posix
make
}
package() {
cd ${srcdir}/lossywav-for-posix
install -m 755 -d "${pkgdir}/usr/bin"
install -m 755 "lossywav" "${pkgdir}/usr/bin/lossywav"
}Offline