wok-next view libao/receipt @ rev 21722

efivar: typo in post_install
author Pascal Bellard <pascal.bellard@slitaz.org>
date Tue Sep 01 10:31:46 2020 +0000 (2020-09-01)
parents a3c581bf52b8
children
line source
1 # SliTaz package receipt v2.
3 PACKAGE="libao"
4 VERSION="1.1.0"
5 CATEGORY="multimedia"
6 SHORT_DESC="Cross-platform audio output library and plugins"
7 MAINTAINER="devel@slitaz.org"
8 LICENSE="GPL2"
9 WEB_SITE="https://ftp.osuosl.org/pub/xiph/releases/ao/"
11 TARBALL="$PACKAGE-$VERSION.tar.gz"
12 WGET_URL="$WEB_SITE/$TARBALL"
14 BUILD_DEPENDS="alsa-lib-dev"
15 SPLIT="$PACKAGE-dev"
17 compile_rules() {
18 ./configure \
19 --enable-alsa09 \
20 --disable-arts \
21 $CONFIGURE_ARGS &&
22 fix libtool &&
23 make &&
24 make install || return 1
26 # Add conf file
27 install -Dm644 $stuff/libao.conf $install/etc/libao.conf
28 }
30 genpkg_rules() {
31 case $PACKAGE in
32 libao)
33 copy @std
34 DEPENDS="alsa-lib"
35 ;;
36 *-dev)
37 copy @dev
38 ;;
39 esac
40 }