wok annotate libmikmod/receipt @ rev 21255

updated libmikmod and libmikmod-dev (3.3.6 -> 3.3.11.1)
author Hans-G?nter Theisgen
date Fri Apr 12 10:36:15 2019 +0100 (2019-04-12)
parents 47db6c314932
children 65d7d867e0c1
rev   line source
pascal@13591 1 # SliTaz package receipt.
pascal@13591 2
pascal@13591 3 PACKAGE="libmikmod"
Hans-G?nter@21255 4 VERSION="3.3.11.1"
pascal@13591 5 CATEGORY="development"
pascal@13591 6 SHORT_DESC="Mikmod module player library."
pascal@13591 7 MAINTAINER="paul@slitaz.org"
pascal@15473 8 LICENSE="LGPL2 LGPL2.1"
Hans-G?nter@21255 9 WEB_SITE="http://mikmod.shlomifish.org/"
Hans-G?nter@21255 10
pascal@13591 11 TARBALL="$PACKAGE-$VERSION.tar.gz"
Hans-G?nter@21255 12 WGET_URL="$SF_MIRROR/mikmod/$PACKAGE/$VERSION/$TARBALL"
pascal@13591 13
pascal@13591 14 DEPENDS=""
pascal@13593 15 BUILD_DEPENDS="bash"
pascal@13591 16
pascal@13591 17 # Rules to configure and make the package.
pascal@13591 18 compile_rules()
pascal@13591 19 {
pascal@15277 20 touch macintosh/_libmikmodversion.r
pascal@13593 21 sed -i 's|\$(SHELL)|/bin/bash|' configure
Hans-G?nter@21255 22
Hans-G?nter@21255 23 ./configure \
Hans-G?nter@21255 24 --prefix=/usr \
pascal@13593 25 $CONFIGURE_ARGS &&
Hans-G?nter@21255 26 make -j 1 &&
Hans-G?nter@21255 27 make install
pascal@13591 28 }
pascal@13591 29
pascal@13591 30 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@13591 31 genpkg_rules()
pascal@13591 32 {
pascal@13591 33 mkdir -p $fs/usr/lib
pascal@13591 34 cp -a $install/usr/lib/*.so* /$fs/usr/lib
pascal@13591 35 }