wok-next diff libcdio/receipt @ rev 20982
... and this one
author | Aleksej Bobylev <al.bobylev@gmail.com> |
---|---|
date | Fri Sep 28 01:16:57 2018 +0300 (2018-09-28) |
parents | 2e9df1b30cc2 |
children | f48456621a9d |
line diff
1.1 --- a/libcdio/receipt Thu Aug 31 03:20:51 2017 +0300 1.2 +++ b/libcdio/receipt Fri Sep 28 01:16:57 2018 +0300 1.3 @@ -7,6 +7,7 @@ 1.4 MAINTAINER="rj.rohit@gmail.com" 1.5 LICENSE="GPL3" 1.6 WEB_SITE="https://www.gnu.org/software/libcdio/" 1.7 +LFS="http://www.linuxfromscratch.org/blfs/view/stable/multimedia/libcdio.html" 1.8 1.9 TARBALL="$PACKAGE-$VERSION.tar.gz" 1.10 WGET_URL="https://ftp.gnu.org/gnu/libcdio/$TARBALL" 1.11 @@ -14,16 +15,14 @@ 1.12 BUILD_DEPENDS="perl libcddb-dev ncurses-dev" 1.13 SPLIT="libcdio-utils libcdio-dev" 1.14 1.15 -# Rules to configure and make the package. 1.16 -compile_rules() 1.17 -{ 1.18 - # http://www.linuxfromscratch.org/blfs/view/stable/multimedia/libcdio.html 1.19 - ./configure $CONFIGURE_ARGS && make && make install 1.20 +compile_rules() { 1.21 + ./configure $CONFIGURE_ARGS && 1.22 + fix libtool && 1.23 + make && 1.24 + make install 1.25 } 1.26 1.27 -# Rules to gen a SliTaz package suitable for Tazpkg. 1.28 -genpkg_rules() 1.29 -{ 1.30 +genpkg_rules() { 1.31 case $PACKAGE in 1.32 libcdio) copy *.so*;; 1.33 *-utils) copy bin/; DEPENDS="libcdio libcddb ncurses";;