Date: Thursday, October 3, 2019 @ 11:40:02 Author: dbermond Revision: 512485
Initial commit of libilbc Added: libilbc/ libilbc/repos/ libilbc/trunk/ libilbc/trunk/PKGBUILD ----------+ PKGBUILD | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) Added: libilbc/trunk/PKGBUILD =================================================================== --- libilbc/trunk/PKGBUILD (rev 0) +++ libilbc/trunk/PKGBUILD 2019-10-03 11:40:02 UTC (rev 512485) @@ -0,0 +1,29 @@ +# Maintainer: Daniel Bermond <[email protected]> + +pkgname=libilbc +pkgver=2.0.2 +pkgrel=4 +pkgdesc='A friendly copy of the iLBC codec from the WebRTC project' +arch=('x86_64') +url='https://github.com/TimothyGu/libilbc/' +license=('BSD') +depends=('glibc') +source=("https://github.com/TimothyGu/libilbc/releases/download/v${pkgver}/${pkgname}-${pkgver}.tar.bz2") +sha256sums=('88e2dc14e1fccd7b7a0d7f84e96ac22a33c3c86820cee4b0a05e3dcc08c2b096') + +build() { + cd "${pkgname}-${pkgver}" + + ./configure \ + --prefix='/usr' \ + --enable-static='no' \ + --enable-shared='yes' + + make +} + +package() { + make -C "${pkgname}-${pkgver}" DESTDIR="$pkgdir" install + + install -D -m644 "${pkgname}-${pkgver}/COPYING" "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE" +} Property changes on: libilbc/trunk/PKGBUILD ___________________________________________________________________ Added: svn:executable ## -0,0 +1 ## +* \ No newline at end of property
