libmikmod: update to 3.3.2.
This commit is contained in:
parent
29fe14b966
commit
3acd517386
3 changed files with 6 additions and 30 deletions
|
@ -1,14 +0,0 @@
|
|||
Yi-Huang Han - Wed Oct 24 21:55:47 PDT 2001
|
||||
* Fixed MOD music volume when looping
|
||||
|
||||
--- playercode/mplayer.c 2009-10-05 00:19:59.000000000 -0700
|
||||
+++ playercode/mplayer.c 2009-10-05 00:44:35.000000000 -0700
|
||||
@@ -3019,7 +3019,7 @@
|
||||
{
|
||||
MUTEX_LOCK(vars);
|
||||
if (pf)
|
||||
- pf->volume=(volume<0)?0:(volume>128)?128:volume;
|
||||
+ pf->volume=pf->initvolume=(volume<0)?0:(volume>128)?128:volume;
|
||||
MUTEX_UNLOCK(vars);
|
||||
}
|
||||
|
|
@ -1,11 +0,0 @@
|
|||
--- include/mikmod.h 2012-06-01 15:15:42.000000000 +0200
|
||||
+++ include/mikmod.h 2012-10-03 20:03:48.173576199 +0200
|
||||
@@ -85,7 +85,7 @@
|
||||
|
||||
|
||||
|
||||
-#if defined(__arch64__) || defined(__alpha) || defined(__x86_64) || defined(__powerpc64__)
|
||||
+#if defined(__arch64__) || defined(__alpha) || defined(__x86_64) || defined(__powerpc64__) || defined(_LP64)
|
||||
/* 64 bit architectures */
|
||||
|
||||
typedef signed char SBYTE; /* 1 byte, signed */
|
|
@ -1,7 +1,7 @@
|
|||
# Template file for 'libmikmod'
|
||||
pkgname=libmikmod
|
||||
version=3.2.0
|
||||
revision=2
|
||||
version=3.3.2
|
||||
revision=1
|
||||
build_style=gnu-configure
|
||||
configure_args="--disable-static"
|
||||
short_desc="MikMod Sound Library"
|
||||
|
@ -9,7 +9,7 @@ maintainer="Juan RP <xtraeme@gmail.com>"
|
|||
homepage="http://mikmod.shlomifish.org/"
|
||||
license="GPL-2, LGPL-2.1"
|
||||
distfiles="${homepage}/files/${pkgname}-${version}.tar.gz"
|
||||
checksum=734c8490bbf9b0c587920b92414dcfa3c2267838a0cdf698d5f1fb6bba8f661e
|
||||
checksum=2311b209255bf24e95161907a16778cb054ac6d447fd8d05f1f0e41a555c7580
|
||||
long_desc="
|
||||
The MikMod sound library is an excellent way for a programmer to
|
||||
add music and sound effects to an application. It is a powerful
|
||||
|
@ -29,16 +29,17 @@ long_desc="
|
|||
|
||||
libmikmod-devel_package() {
|
||||
depends="libmikmod>=${version}"
|
||||
short_desc+=" -- development files"
|
||||
short_desc+=" - development files"
|
||||
pkg_install() {
|
||||
vmove usr/bin
|
||||
vmove usr/include
|
||||
vmove usr/share
|
||||
vmove "usr/lib/*.so"
|
||||
}
|
||||
}
|
||||
|
||||
libmikmod_package() {
|
||||
pkg_install() {
|
||||
vmove usr
|
||||
vmove all
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue