diff options
author | James Meyer <james.meyer@operamail.com> | 2009-06-01 02:10:45 (GMT) |
---|---|---|
committer | James Meyer <james.meyer@operamail.com> | 2009-06-01 02:10:45 (GMT) |
commit | f01297f70fbbf345e11edcf8f1d5fb77c6d2a6ed (patch) | |
tree | 1babc4291a4cd3d72ce7e595212a273318e33018 /abs/extra-testing/libmpcdec | |
parent | d7a06c882ef45d014319f98daf8e0dbe5599321d (diff) | |
parent | 528268bf6b14f8e3c9f4941d5587d982ff1892d6 (diff) | |
download | linhes_pkgbuild-f01297f70fbbf345e11edcf8f1d5fb77c6d2a6ed.zip linhes_pkgbuild-f01297f70fbbf345e11edcf8f1d5fb77c6d2a6ed.tar.gz linhes_pkgbuild-f01297f70fbbf345e11edcf8f1d5fb77c6d2a6ed.tar.bz2 |
Merge branch 'HEAD' of ssh://jams@knoppmyth.net/mount/repository/LinHES-PKGBUILD into linhes-config-python
* 'HEAD' of ssh://jams@knoppmyth.net/mount/repository/LinHES-PKGBUILD:
runit-scripts: update the lircd run script to use the dvicoIR sym link
lirc: update PKGBUILD to install dvico udev rule
lirc: add udev rule for the dvico remote
lirc: added support for other mce remotes
Added patch needed for FUPPES for compile.
Initial inclusion, needed for fuppes.
Updated to fuppes-svn.
Removed fuppes.
Latest version. Closes FS 365.
Fixed typo.
Included ffpresets. Closes FS #359.
Bumped to ensure latest -fixes.
Bumped to ensure latest -fixes.
Bumped for latest -fixes.
Bumped to latest fixes and VDPAU 20549 patch.
Diffstat (limited to 'abs/extra-testing/libmpcdec')
-rw-r--r-- | abs/extra-testing/libmpcdec/PKGBUILD | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/abs/extra-testing/libmpcdec/PKGBUILD b/abs/extra-testing/libmpcdec/PKGBUILD new file mode 100644 index 0000000..feeaf8b --- /dev/null +++ b/abs/extra-testing/libmpcdec/PKGBUILD @@ -0,0 +1,22 @@ +# $Id: PKGBUILD 356 2008-04-18 22:56:27Z aaron $ +# Maintainer: Jan de Groot <jgc@archlinux.org> + +pkgname=libmpcdec +pkgver=1.2.6 +pkgrel=1 +pkgdesc="Musepack decoding library" +arch=(i686 x86_64) +license=('custom') +depends=('glibc') +options=('!libtool') +source=(http://files.musepack.net/source/${pkgname}-${pkgver}.tar.bz2) +url="http://musepack.net/" +md5sums=('7f7a060e83b4278acf4b77d7a7b9d2c0') + +build() { + cd ${startdir}/src/${pkgname}-${pkgver} + ./configure --prefix=/usr --disable-static + make || return 1 + make DESTDIR=${startdir}/pkg install || return 1 + install -Dm644 COPYING ${startdir}/pkg/usr/share/licenses/${pkgname}/COPYING +} |