wok-next annotate openal/receipt @ rev 21727

created recipe for vbindiff
author Hans-G?nter Theisgen
date Sat Nov 21 14:32:44 2020 +0100 (2020-11-21)
parents 4e6503d7a19f
children
rev   line source
al@20456 1 # SliTaz package receipt v2.
pascal@3904 2
pascal@3904 3 PACKAGE="openal"
pascal@18193 4 VERSION="1.16.0"
pascal@3904 5 CATEGORY="multimedia"
al@20456 6 SHORT_DESC="Cross-platform 3D audio API"
pascal@3904 7 MAINTAINER="pascal.bellard@slitaz.org"
pascal@15004 8 LICENSE="LGPL2"
pascal@3904 9 WEB_SITE="http://www.openal.org/"
al@20884 10 REPOLOGY="openal-soft"
al@20456 11
al@20456 12 TARBALL="openal-soft-$VERSION.tar.bz2"
pascal@18193 13 WGET_URL="http://www.openal-soft.org/openal-releases/$TARBALL"
al@20456 14
pascal@3904 15 BUILD_DEPENDS="cmake"
al@21020 16 SPLIT="$PACKAGE-dev"
pascal@3904 17
al@20456 18 compile_rules() {
al@21020 19 cmake \
al@21020 20 -DCMAKE_INSTALL_PREFIX=/usr \
al@21020 21 . &&
pascal@3904 22 make &&
gokhlayeh@8774 23 make install
pascal@3904 24 }
pascal@3904 25
al@20456 26 genpkg_rules() {
al@20456 27 case $PACKAGE in
al@20456 28 openal)
al@20456 29 copy @std
al@20456 30 TAGS="multimedia audio sound 3D"
al@20456 31 ;;
al@20456 32 *-dev)
al@20456 33 copy @dev
al@20456 34 ;;
al@20456 35 esac
pascal@3904 36 }