wok annotate codec2/receipt @ rev 25617
Up codec2 (1.2.0), libpri (1.6.1)
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Sat Aug 26 20:46:07 2023 +0000 (14 months ago) |
parents | d79ed38ace18 |
children |
rev | line source |
---|---|
pascal@21957 | 1 # SliTaz package receipt. |
pascal@21957 | 2 |
pascal@21957 | 3 PACKAGE="codec2" |
pascal@25617 | 4 VERSION="1.2.0" |
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@25617 | 11 WGET_URL="$WEB_SITE/archive/refs/tags/$VERSION.tar.gz" |
pascal@21957 | 12 |
pascal@22024 | 13 BUILD_DEPENDS="cmake" |
pascal@21957 | 14 |
pascal@24313 | 15 # What is the latest version available today? |
pascal@22825 | 16 current_version() |
pascal@22825 | 17 { |
pascal@25617 | 18 wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ |
pascal@25598 | 19 sed '/tag\//!d;s|.*tag/v*||;s|".*||;q' |
pascal@22825 | 20 } |
pascal@22825 | 21 |
pascal@21957 | 22 # Rules to configure and make the package. |
pascal@21957 | 23 compile_rules() |
pascal@21957 | 24 { |
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@25440 | 36 mkdir -p $fs/usr/lib $fs/usr/bin |
pascal@25440 | 37 cp -a $src/build_linux/src/c2* $fs/usr/bin |
pascal@21957 | 38 cp -a $install/usr/lib/*.so* $fs/usr/lib |
pascal@21957 | 39 } |