wok annotate libmodplug/receipt @ rev 21103

jabberd2: fix deps
author Pascal Bellard <pascal.bellard@slitaz.org>
date Mon Mar 18 19:35:58 2019 +0100 (2019-03-18)
parents 8f447cf2eee5
children 2aa4897bdebc
rev   line source
jozee@2658 1 # SliTaz package receipt.
jozee@2658 2
jozee@2658 3 PACKAGE="libmodplug"
slaxemulator@6382 4 VERSION="0.8.8.1"
jozee@2658 5 CATEGORY="multimedia"
jozee@2658 6 SHORT_DESC="A MOD playing library"
jozee@2658 7 MAINTAINER="jozee@slitaz.org"
pascal@15473 8 LICENSE="PublicDomain"
jozee@2658 9 TARBALL="$PACKAGE-$VERSION.tar.gz"
jozee@2658 10 WEB_SITE="http://modplug-xmms.sourceforge.net/"
jozee@2658 11 WGET_URL="http://downloads.sf.net/sourceforge/modplug-xmms/$TARBALL"
pankso@16084 12 HOST_ARCH="i486 arm"
jozee@2658 13
pascal@15473 14 DEPENDS="gcc-lib-base"
pascal@15473 15 BUILD_DEPENDS="gcc-lib-base"
pascal@15473 16
jozee@2658 17 # Rules to configure and make the package.
jozee@2658 18 compile_rules()
jozee@2658 19 {
jozee@2658 20 cd $src
gokhlayeh@11573 21 ./configure --prefix=/usr $CONFIGURE_ARGS
jozee@2658 22 make
pascal@15473 23 make DESTDIR=$DESTDIR install
jozee@2658 24 }
jozee@2658 25
jozee@2658 26 # Rules to gen a SliTaz package suitable for Tazpkg.
jozee@2658 27 genpkg_rules()
jozee@2658 28 {
jozee@2658 29 mkdir -p $fs/usr/lib
pascal@15473 30 cp -a $install/usr/lib/*.so* $fs/usr/lib
jozee@2658 31 }