initial import

This commit is contained in:
2025-06-22 20:39:04 -05:00
commit f8a70886f0
3428 changed files with 302546 additions and 0 deletions

57
libmikmod/PKGBUILD Normal file
View File

@@ -0,0 +1,57 @@
# Maintainer: Jesus E. <heckyel@riseup.net>
pkgname=libmikmod
pkgver=3.3.11.1
_debver=3.3.11.1
_debrel=6
pkgrel=1
pkgdesc="Module player library supporting many formats, including MOD, S3M, IT and XM"
url=http://mikmod.sourceforge.net
license=(LGPL-2)
arch=(i686 x86_64)
depends=(glibc libsndio sh)
makedepends=(alsa-lib cmake quilt)
source=(https://downloads.sourceforge.net/mikmod/$pkgname-$pkgver.tar.gz
https://deb.debian.org/debian/pool/main/libm/libmikmod/libmikmod_$_debver-$_debrel.debian.tar.xz
cmake-man.patch)
sha512sums=('f2439e2b691613847cd0787dd4e050116683ce7b05c215b8afecde5c6add819ea6c18e678e258c0a80786bef463f406072de15127f64368f694287a5e8e1a9de'
'553c0cae558e517b677cee985c03125454cc5a6a3affde8816f0cd18339639b7e6ae4c02fae01d23c094e4cb7bd9038d666642a0216ee57fc9ca198061f7964d'
'9b8a87039b545855f3fdd16ee6f6a2e4f060460c5997a3a69eef027f69d1d5def2618843ee75f0c08eef0af284f2dc70dfe764fba71a5dffdfdb32942aebb9f2')
prepare() {
cd $pkgname-$pkgver
if [[ ${pkgver%.*} = ${_debver%.*} ]]; then
# Debian patches
export QUILT_PATCHES=debian/patches
export QUILT_REFRESH_ARGS='-p ab --no-timestamps --no-index'
export QUILT_DIFF_ARGS='--no-timestamps'
mv "$srcdir"/debian .
quilt push -av
fi
patch -Np1 -i ../cmake-man.patch
}
build() {
# cmake ignores CPPFLAGS
CFLAGS+=" $CPPFLAGS"
cmake -H$pkgname-$pkgver -Bbuild \
-DCMAKE_INSTALL_PREFIX=/usr \
-DENABLE_DL=1 \
-DENABLE_SNDIO=1
cmake --build build
}
package() {
DESTDIR="$pkgdir" cmake --build build --target install
install -Dt "$pkgdir/usr/share/aclocal" -m644 $pkgname-$pkgver/libmikmod.m4
install -Dt "$pkgdir/usr/share/doc/$pkgname" -m644 \
$pkgname-$pkgver/{NEWS,README,TODO} build/docs/mikmod.html
install -Dt "$pkgdir/usr/share/info" build/docs/mikmod.info
install -Dt "$pkgdir/usr/share/man/man1" build/docs/libmikmod-config.1
install -Dt "$pkgdir/usr/share/licenses/$pkgname" -m644 \
$pkgname-$pkgver/COPYING.LIB
}

11
libmikmod/cmake-man.patch Normal file
View File

@@ -0,0 +1,11 @@
diff -u -r libmikmod-3.3.11.1/docs/CMakeLists.txt libmikmod-3.3.11.1-man/docs/CMakeLists.txt
--- libmikmod-3.3.11.1/docs/CMakeLists.txt 2014-07-10 07:37:00.000000000 +0000
+++ libmikmod-3.3.11.1-man/docs/CMakeLists.txt 2020-01-11 18:54:48.154853499 +0000
@@ -20,5 +20,7 @@
COMMENT "Creating HTML file ${html_out}"
VERBATIM)
+configure_file(libmikmod-config.1.in libmikmod-config.1 @ONLY)
+
add_custom_target(info ALL DEPENDS ${info_out} ${html_out})
ENDIF(ENABLE_DOC)