wok annotate alsa-lib/receipt @ rev 22571

updated bullet and bullet-dev (2.82-r2704 -> 2.89)
author Hans-G?nter Theisgen
date Mon Jan 06 09:36:50 2020 +0100 (2020-01-06)
parents 0644ee05ddc4
children 0b02213fe0a1
rev   line source
pankso@32 1 # SliTaz package receipt.
pankso@32 2
pankso@32 3 PACKAGE="alsa-lib"
pascal@20247 4 VERSION="1.1.5"
pankso@177 5 CATEGORY="multimedia"
pankso@32 6 SHORT_DESC="Alsa sound libraries."
pankso@32 7 MAINTAINER="pankso@slitaz.org"
pascal@14996 8 LICENSE="LGPL2.1"
pankso@32 9 TARBALL="$PACKAGE-$VERSION.tar.bz2"
pankso@32 10 WEB_SITE="http://www.alsa-project.org/"
slaxemulator@14607 11 WGET_URL="ftp://ftp.alsa-project.org/pub/lib/$TARBALL"
pankso@15946 12 HOST_ARCH="i486 arm"
pankso@15946 13
pankso@15946 14 DEPENDS="linux"
pankso@32 15
pankso@32 16 # Rules to configure and make the package.
pankso@32 17 compile_rules()
pankso@32 18 {
slaxemulator@10047 19 ./configure --disable-python \
slaxemulator@10047 20 $CONFIGURE_ARGS &&
gokhlayeh@8230 21 make && make -j1 install
pankso@32 22 }
pankso@32 23
pankso@32 24 # Rules to gen a SliTaz package suitable for Tazpkg.
pankso@32 25 genpkg_rules()
pankso@32 26 {
admin@13548 27 # Enable software mixing for multiple audio streams
admin@13548 28 mkdir -p $fs/etc
admin@13548 29 cp $stuff/asound.conf $fs/etc
pankso@32 30 mkdir -p $fs/usr/lib $fs/usr/share
pankso@13345 31 cp -a $install/usr/bin $fs/usr
pankso@13345 32 cp -a $install/usr/lib/*.so* $fs/usr/lib
pankso@13345 33 cp -a $install/usr/share/alsa $fs/usr/share
pankso@32 34 }
pankso@32 35