wok view freealut/receipt @ rev 20641

Add SSL support to retawq (needed by man to browse linux.die.net)
author Lucas Levrel <llevrel@yahoo.fr>
date Fri Jan 11 09:19:11 2019 +0100 (2019-01-11)
parents
children 9820f9ae38d5
line source
1 # SliTaz package receipt.
3 PACKAGE="freealut"
4 COMMIT="2fa9ea27be7bb4124a878d44c14e6634f7beb1e2"
5 VERSION="${COMMIT:0:7}"
6 CATEGORY="multimedia"
7 SHORT_DESC="freealut is a free implementation of OpenAL's ALUT standard"
8 MAINTAINER="al.bobylev@gmail.com"
9 LICENSE="LGPL"
10 #WEB_SITE="http://distro.ibiblio.org/rootlinux/rootlinux-ports/more/freealut/freealut-1.1.0/doc/alut.html"
11 WEB_SITE="https://github.com/vancegroup/freealut"
12 TARBALL="$PACKAGE-$VERSION.tar.gz"
13 WGET_URL="https://github.com/vancegroup/$PACKAGE/archive/$COMMIT.tar.gz"
15 DEPENDS="openal glibc-base"
16 BUILD_DEPENDS="wget cacerts cmake openal-dev"
18 # Rules to configure and make the package.
19 compile_rules()
20 {
21 mkdir build; cd build
22 cmake .. -DCMAKE_INSTALL_PREFIX:STRING="/usr" &&
23 make && make install
24 }
26 # Rules to gen a SliTaz package suitable for Tazpkg.
27 genpkg_rules()
28 {
29 mkdir -p $fs/usr/lib
30 cp -a $install/usr/lib/*.so* $fs/usr/lib
31 }