added g72x++, decoder for the g72x++ codec

This commit is contained in:
jensp 2009-12-13 14:59:51 +00:00
parent 7163a00974
commit 0c7ff0ac83
2 changed files with 27 additions and 0 deletions

View file

@ -0,0 +1,2 @@
DIST g72x++.tar.bz2 30283 RMD160 8ac03b024d40832f4df25e09b02b2617392af4c5 SHA1 08cf53e6b27de6a7c778b563b2b95fa44ebba116 SHA256 f245bbb53137efcc5828a031c0c099c3f8c69bfea329a94e97bd6623ab9630d3
EBUILD g72x++-1.ebuild 518 RMD160 4411cb0cd7ef35e330895308b0fdcc1ea5abc98e SHA1 26ef611834bc914a08f13d8a1f04988db7deefae SHA256 099fce46bb73ede787384e27b1b2dbdeb082883c98a6dcd184bad9de88a730ae

View file

@ -0,0 +1,25 @@
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
DESCRIPTION="Decoder for the g72x++ codec, commonly used by DECT phones"
HOMEPAGE="http://www.ps-auxw.de"
SRC_URI="http://www.ps-auxw.de/${PN}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~x86 ~amd64"
IUSE=""
DEPEND=""
RDEPEND=""
S="${WORKDIR}"/g72x
src_compile() {
gcc $CFLAGS -o decode-g72x decode.c g*.c bitstream.c
}
src_install() {
dobin decode-g72x || die "failed to install g72x++"
}