wok-next view libcdio/receipt @ rev 21723

busybox: update patches
author Pascal Bellard <pascal.bellard@slitaz.org>
date Tue Sep 01 10:44:52 2020 +0000 (2020-09-01)
parents f48456621a9d
children
line source
1 # SliTaz package receipt v2.
3 PACKAGE="libcdio"
4 VERSION="0.94"
5 CATEGORY="multimedia"
6 SHORT_DESC="GNU Compact Disc Input and Control Library"
7 MAINTAINER="devel@slitaz.org"
8 LICENSE="GPL3"
9 WEB_SITE="https://www.gnu.org/software/libcdio/"
10 LFS="http://www.linuxfromscratch.org/blfs/view/svn/multimedia/libcdio.html"
12 TARBALL="$PACKAGE-$VERSION.tar.gz"
13 WGET_URL="https://ftp.gnu.org/gnu/libcdio/$TARBALL"
15 BUILD_DEPENDS="perl libcddb-dev ncurses-dev"
16 SPLIT="$PACKAGE-utils $PACKAGE-dev"
18 compile_rules() {
19 ./configure $CONFIGURE_ARGS &&
20 fix libtool &&
21 make &&
22 make install
23 }
25 genpkg_rules() {
26 case $PACKAGE in
27 libcdio)
28 copy *.so*
29 ;;
30 *-utils)
31 copy bin/
32 DEPENDS="libcdio libcddb ncurses"
33 ;;
34 *-dev)
35 copy @dev
36 ;;
37 esac
38 }