wok-current view asunder/receipt @ rev 25694

Fix cifs-utils, up grub2-efi-x64 stuff for iso EFI
author Stanislas Leduc <shann@slitaz.org>
date Sat Mar 30 18:05:22 2024 +0000 (2 months ago)
parents 78a5d055846f
children
line source
1 # SliTaz package receipt.
3 PACKAGE="asunder"
4 VERSION="2.9.7"
5 CATEGORY="multimedia"
6 TAGS="audio rip"
7 SHORT_DESC="GTK light CD ripper."
8 MAINTAINER="pankso@slitaz.org"
9 LICENSE="GPL2"
10 WEB_SITE="http://littlesvr.ca/asunder/"
12 TARBALL="$PACKAGE-$VERSION.tar.bz2"
13 WGET_URL="$WEB_SITE/releases/$TARBALL"
15 SUGGESTED="lame flac"
16 DEPENDS="alsa-lib cdparanoia-III gtk+ libcddb vorbis-tools
17 xorg-libXdamage"
18 BUILD_DEPENDS="alsa-lib-dev cdparanoia-III-dev gtk+-dev libcddb-dev
19 xorg-libXdamage-dev"
21 GENERIC_PIXMAPS="no"
22 COOKOPTS="!pixmaps"
24 current_version()
25 {
26 wget -O - ${WEB_SITE}downloads.php 2>/dev/null | \
27 sed '/asunder-/!d;s|.*asunder-||;s|.tar.*||;q'
28 }
30 # Rules to configure and make the package.
31 compile_rules()
32 {
33 # Remove unknow flag for gcc 6.3.0
34 # -Wno-format-truncation -Wstringop-overflow=0 -Wno-stringop-truncation
35 patch -p1 < $stuff/asunder_gcc6.patch
37 ./configure \
38 --prefix=/usr \
39 $CONFIGURE_ARGS &&
40 make &&
41 make install DESTDIR=$DESTDIR
42 }
44 # Rules to gen a SliTaz package suitable for Tazpkg.
45 genpkg_rules()
46 {
47 mkdir -p $fs/usr/share/applications
48 cook_copy_folders bin
49 cp -a $stuff/asunder.desktop $fs/usr/share/applications
50 }