diff options
author | Nicolas Reynolds <fauno@kiwwwi.com.ar> | 2012-02-19 00:31:40 -0300 |
---|---|---|
committer | Nicolas Reynolds <fauno@kiwwwi.com.ar> | 2012-02-19 00:31:40 -0300 |
commit | b7be3e931b811decb9a8686a60e52fe723bbaf81 (patch) | |
tree | 2e7da21de151c50ecdfa97a9d4ef5db5de62db51 /extra/opencore-amr/PKGBUILD | |
parent | 78397621fc97288066a5d73989811ab0fe641bd6 (diff) | |
parent | 1098e9db0acc5bb5c45af5778492faf3b4c99dd6 (diff) |
Merge branch 'master' of ssh://vparabola/home/parabola/abslibre-pre-mips64el
Conflicts:
community-testing/ipvsadm/PKGBUILD
community/arch/PKGBUILD
community/chntpw/PKGBUILD
community/dnstracer/PKGBUILD
community/dvtm/PKGBUILD
community/gnash/PKGBUILD
community/ngspice/PKGBUILD
community/siege/PKGBUILD
extra/enscript/PKGBUILD
extra/gconfmm/PKGBUILD
extra/gftp/PKGBUILD
extra/libart-lgpl/PKGBUILD
extra/libcaca/PKGBUILD
extra/libdv/PKGBUILD
extra/libgnomemm/PKGBUILD
extra/libidl2/PKGBUILD
extra/libvisual/PKGBUILD
extra/libxdamage/PKGBUILD
extra/libxrender/PKGBUILD
extra/openslp/PKGBUILD
extra/snarf/PKGBUILD
multilib/wine/PKGBUILD
testing/mesa/PKGBUILD
testing/xf86-video-glint/PKGBUILD
Diffstat (limited to 'extra/opencore-amr/PKGBUILD')
-rw-r--r-- | extra/opencore-amr/PKGBUILD | 14 |
1 files changed, 8 insertions, 6 deletions
diff --git a/extra/opencore-amr/PKGBUILD b/extra/opencore-amr/PKGBUILD index affd35652..dcee133c9 100644 --- a/extra/opencore-amr/PKGBUILD +++ b/extra/opencore-amr/PKGBUILD @@ -1,24 +1,26 @@ -# $Id: PKGBUILD 62601 2010-01-10 14:07:22Z ibiru $ +# $Id: PKGBUILD 150469 2012-02-18 00:45:39Z allan $ # Maintainer: Ionut Biru <ionut@archlinux.ro> # Contributor: WAntilles <wantilles@adslgr.com> pkgname=opencore-amr pkgver=0.1.2 -pkgrel=1 +pkgrel=2 pkgdesc="Open source implementation of the Adaptive Multi Rate (AMR) speech codec" arch=('i686' 'x86_64' 'mips64el') license=('APACHE') url="http://opencore-amr.sourceforge.net/" -depends=('gcc-libs') source=(http://downloads.sourceforge.net/sourceforge/${pkgname}/${pkgname}-${pkgver}.tar.gz) options=('!libtool') md5sums=('8e8b8b253eb046340ff7b6bf7a6ccd3e') build() { cd ${srcdir}/${pkgname}-${pkgver} + ./configure --prefix=/usr + make +} - ./configure --prefix=/usr || return 1 - make || return 1 - make DESTDIR=${pkgdir}/ install || return 1 +package() { + cd ${srcdir}/${pkgname}-${pkgver} + make DESTDIR=${pkgdir}/ install } |