added new package: lib32-libsamplerate

This commit is contained in:
Giuseppe 2011-02-06 14:46:17 +00:00
parent 0a1c51ce0e
commit b80e48dc49
4 changed files with 42 additions and 6 deletions

View File

@ -5,7 +5,7 @@
_pkgbasename=alsa-lib
pkgname=lib32-${_pkgbasename}
pkgver=1.0.23
pkgver=1.0.24
pkgrel=1
pkgdesc="An alternative implementation of Linux sound support (32 bit)"
arch=('x86_64')
@ -15,7 +15,7 @@ depends=('lib32-glibc' 'alsa-lib')
license=('GPL')
options=(!libtool)
source=(ftp://ftp.alsa-project.org/pub/lib/${_pkgbasename}-$pkgver.tar.bz2)
md5sums=('f48b50421d8a69d2d806d9c47e534f0d')
md5sums=('7cc05f25e1d5b65da8fb3fdcd540f226')
build() {
cd $srcdir/${_pkgbasename}-$pkgver

View File

@ -6,7 +6,7 @@
_pkgbasename=alsa-oss
pkgname=lib32-${_pkgbasename}
pkgver=1.0.17
pkgrel=1
pkgrel=2
pkgdesc="OSS compatibility library (32 bit)"
arch=(x86_64)
license=('GPL')

View File

@ -6,8 +6,8 @@
_pkgbasename=alsa-plugins
pkgname=lib32-$_pkgbasename
pkgver=1.0.23
pkgrel=7
pkgver=1.0.24
pkgrel=1
pkgdesc="Extra alsa plugins (32-bit)"
arch=(x86_64)
url="http://www.alsa-project.org"
@ -22,7 +22,7 @@ options=('!libtool')
source=("ftp://ftp.alsa-project.org/pub/plugins/$_pkgbasename-$pkgver.tar.bz2"
Fix_invalid_buffer_pointer_return_value.patch
Add_handle_underrun_option.patch)
md5sums=('a671f8102366c5b388133e948e1c85cb'
md5sums=('e4d4c90e11ab9d1a117afbbc1edd2b16'
'067a51a5157a42989f60078d5225b6c1'
'56fb0e9cbef9714504ecaa1bb62d7acf')

View File

@ -0,0 +1,36 @@
# Lib32 Packages for Chakra, part of chakra-project.org
#
# maintainer (x86_64): Giuseppe Calà <jiveaxe@gmail.com>
# maintainer (x86_64): Anke Boersma <abveritas[at]chakra-project[dot]org>
_pkgbasename=libsamplerate
pkgname=lib32-$_pkgbasename
pkgver=0.1.7
pkgrel=1
pkgdesc="Secret Rabbit Code - aka Sample Rate Converter for audio (32-bit)"
arch=('x86_64')
url="http://www.mega-nerd.com/SRC/index.html"
license=('GPL')
depends=('lib32-libsndfile' $_pkgbasename)
makedepedns=('gcc-multilib')
options=('!libtool')
source=(http://www.mega-nerd.com/SRC/libsamplerate-${pkgver}.tar.gz)
md5sums=('6731a81cb0c622c483b28c0d7f90867d')
build() {
cd ${srcdir}/${_pkgbasename}-${pkgver}
export CC="gcc -m32"
export CXX="g++ -m32"
export PKG_CONFIG_PATH="/usr/lib32/pkgconfig"
./configure --prefix=/usr --libdir=/usr/lib32
make
}
package() {
cd ${srcdir}/${_pkgbasename}-${pkgver}
make DESTDIR=${pkgdir} install
rm -rf "${pkgdir}"/usr/{include,share,bin}
}