initial import

This commit is contained in:
2025-06-22 20:39:04 -05:00
commit f8a70886f0
3428 changed files with 302546 additions and 0 deletions

25
ttaenc/PKGBUILD Normal file
View File

@@ -0,0 +1,25 @@
# Maintainer: Jesus E. <heckyel@riseup.net>
pkgname=ttaenc
pkgver=3.4.1
pkgrel=1
pkgdesc="TrueAudio free and libre, lossless compressor for multichannel 8,16 and 24 bits audio data"
arch=('i686' 'x86_64')
url='http://tta.sourceforge.net/'
license=('GPL-2')
source=("http://downloads.sourceforge.net/tta/${pkgname}-${pkgver}-src.tgz")
sha512sums=('489f9a2e0f94a82f12302f076e33062104e58688ffde97e742ad3c8c226bd0000133c539e9111e10f2d24c176e0b7ddd0a76e60bd3baafa53c29b3cd89ada06d')
build() {
cd "${srcdir}/${pkgname}-${pkgver}-src"
make
}
package() {
cd "${srcdir}/${pkgname}-${pkgver}-src"
install -Dm755 "${pkgname}" "${pkgdir}/usr/bin/${pkgname}"
install -dm755 "${pkgdir}/usr/share/doc/${pkgname}"
install -m644 "ChangeLog-${pkgver}" README "${pkgdir}/usr/share/doc/${pkgname}/"
install -Dm644 COPYING -t "${pkgdir}/usr/share/licenses/${pkgname}"
}