wok-next view alsa-oss/receipt @ rev 21721

created recipes for efivar and efibootmgr
author Hans-G?nter Theisgen
date Tue Sep 01 10:09:15 2020 +0100 (2020-09-01)
parents 3bc985504162
children
line source
1 # SliTaz package receipt v2.
3 PACKAGE="alsa-oss"
4 VERSION="1.1.8"
5 CATEGORY="multimedia"
6 SHORT_DESC="ALSA OSS compatibility library"
7 MAINTAINER="al.bobylev@gmail.com"
8 LICENSE="GPL2"
9 WEB_SITE="https://www.alsa-project.org/main/index.php/Main_Page"
10 LFS="http://www.linuxfromscratch.org/blfs/view/svn/multimedia/alsa-oss.html"
12 TARBALL="$PACKAGE-$VERSION.tar.bz2"
13 WGET_URL="ftp://ftp.alsa-project.org/pub/oss-lib/$TARBALL"
15 BUILD_DEPENDS="alsa-lib-dev"
16 SPLIT="$PACKAGE-dev"
18 compile_rules()
19 {
20 ./configure \
21 --disable-static \
22 $CONFIGURE_ARGS &&
23 fix libtool &&
24 make &&
25 make install
26 }
28 genpkg_rules()
29 {
30 case $PACKAGE in
31 alsa-oss)
32 copy @std
33 DEPENDS="alsa-lib"
34 ;;
35 *-dev)
36 copy @dev
37 ;;
38 esac
39 }