mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2025-03-09 00:17:31 +00:00
added tremor
This commit is contained in:
parent
03462afdf6
commit
ccd3799d07
1 changed files with 35 additions and 0 deletions
35
aur/libvorbisidec-svn/PKGBUILD
Normal file
35
aur/libvorbisidec-svn/PKGBUILD
Normal file
|
@ -0,0 +1,35 @@
|
|||
# Maintainer: evnu <mamuelle@informatik.hu-berlin.de>
|
||||
pkgname=libvorbisdec-svn
|
||||
pkgver=17636
|
||||
pkgrel=1
|
||||
pkgdesc="Tremor is a fixed-point version of the Ogg Vorbis decoder for those platforms that can't do floating point math. "
|
||||
arch=('arm')
|
||||
url="http://wiki.xiph.org/index.php/Tremor"
|
||||
license=('GPL')
|
||||
depends=('libogg')
|
||||
makedepends=('subversion' 'autoconf' 'automake')
|
||||
source=()
|
||||
md5sums=()
|
||||
|
||||
_svntrunk="http://svn.xiph.org/trunk/Tremor/"
|
||||
_svnmod=Tremor
|
||||
|
||||
build() {
|
||||
cd $srcdir
|
||||
if [ -d "${_svnmod}"/.svn ]
|
||||
then
|
||||
msg "Starting SVN update ..."
|
||||
cd "${_svnmod}"
|
||||
svn up
|
||||
msg "... updating finished."
|
||||
else
|
||||
msg "Starting SVN checkout ..."
|
||||
svn co ${_svntrunk}
|
||||
msg "... checkout finished."
|
||||
fi
|
||||
cd $srcdir/${_svnmod}
|
||||
./autogen.sh --prefix=${pkgdir}/usr/
|
||||
make || return 1
|
||||
make install || return 1
|
||||
}
|
||||
|
Loading…
Reference in a new issue