wok annotate codec2/receipt @ rev 24034

Openssh (8.5p1)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Thu Apr 08 09:21:26 2021 +0000 (2021-04-08)
parents 314dd7281637
children 7e911016a644
rev   line source
pascal@21957 1 # SliTaz package receipt.
pascal@21957 2
pascal@21957 3 PACKAGE="codec2"
pascal@22429 4 VERSION="0.9.2"
pascal@21957 5 CATEGORY="multimedia"
pascal@21957 6 SHORT_DESC="An open source low bit rate speech codec"
pascal@21957 7 MAINTAINER="pascal.bellard@slitaz.org"
pascal@21957 8 LICENSE="LGPL2.1"
pascal@22429 9 TARBALL="$PACKAGE-$VERSION.tar.gz"
pascal@21957 10 WEB_SITE="https://github.com/drowe67/codec2"
pascal@22429 11 WGET_URL="$WEB_SITE/archive/v$VERSION.tar.gz"
pascal@21957 12
pascal@22024 13 BUILD_DEPENDS="cmake"
pascal@21957 14
pascal@22825 15 current_version()
pascal@22825 16 {
pascal@22841 17 wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \
pascal@24034 18 sed '/archive.*tar/!d;s|.*/v\(.*\).tar.*|\1|;q'
pascal@22825 19 }
pascal@22825 20
pascal@21957 21 # Rules to configure and make the package.
pascal@21957 22 compile_rules()
pascal@21957 23 {
pascal@21957 24 sed -i 's| -no-pie||' unittest/CMakeLists.txt
pascal@21957 25 mkdir -p $DESTDIR/usr/share/doc
pascal@22024 26 cp README* COPYING $DESTDIR/usr/share/doc
pascal@21957 27 mkdir build_linux
pascal@21957 28 cd build_linux
pascal@21957 29 cmake -DCMAKE_INSTALL_PREFIX=/usr .. &&
pascal@21957 30 make DESTDIR=$DESTDIR install
pascal@21957 31 }
pascal@21957 32
pascal@21957 33 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@21957 34 genpkg_rules()
pascal@21957 35 {
pascal@21957 36 mkdir -p $fs/usr/lib
pascal@21957 37 cp -a $install/usr/bin $fs/usr
pascal@21957 38 cp -a $install/usr/lib/*.so* $fs/usr/lib
pascal@21957 39 }