wok annotate freealut/receipt @ rev 21455

updated mlt again (6.4.1 -> 6.14.0)
author Hans-G?nter Theisgen
date Mon Apr 29 17:43:51 2019 +0100 (2019-04-29)
parents 3aaf9d1029f3
children 5ea0ce1cecc0
rev   line source
al@18192 1 # SliTaz package receipt.
al@18192 2
al@18192 3 PACKAGE="freealut"
pascal@21242 4 VERSION="1.1.0"
al@18192 5 CATEGORY="multimedia"
al@18192 6 SHORT_DESC="freealut is a free implementation of OpenAL's ALUT standard"
al@18192 7 MAINTAINER="al.bobylev@gmail.com"
al@18192 8 LICENSE="LGPL"
al@18192 9 WEB_SITE="https://github.com/vancegroup/freealut"
pascal@21242 10 TARBALL="${PACKAGE}_${VERSION//./_}.tar.gz"
pascal@21242 11 WGET_URL="$WEB_SITE/archive/$TARBALL"
al@18192 12
al@18192 13 DEPENDS="openal glibc-base"
al@18192 14 BUILD_DEPENDS="wget cacerts cmake openal-dev"
al@18192 15
al@18192 16 # Rules to configure and make the package.
al@18192 17 compile_rules()
al@18192 18 {
al@18192 19 mkdir build; cd build
al@18192 20 cmake .. -DCMAKE_INSTALL_PREFIX:STRING="/usr" &&
al@18192 21 make && make install
al@18192 22 }
al@18192 23
al@18192 24 # Rules to gen a SliTaz package suitable for Tazpkg.
al@18192 25 genpkg_rules()
al@18192 26 {
al@18192 27 mkdir -p $fs/usr/lib
al@18192 28 cp -a $install/usr/lib/*.so* $fs/usr/lib
al@18192 29 }