wok view libdvdread-dev/receipt @ rev 21935

soundtouch: fix build
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sun Oct 06 18:10:58 2019 +0200 (2019-10-06)
parents eeba7ab1dffe
children 797d6c2327f1
line source
1 # SliTaz package receipt."
3 PACKAGE="libdvdread-dev"
4 VERSION="6.0.1"
5 CATEGORY="system-tools"
6 SHORT_DESC="Library for reading DVDs - development files."
7 MAINTAINER="erjo@slitaz.org"
8 LICENSE="GPL2"
9 WEB_SITE="http://dvdnav.mplayerhq.hu/"
11 WANTED="libdvdread"
12 DEPENDS="libdvdread pkg-config"
14 genpkg_rules()
15 {
16 mkdir -p $fs/usr
18 # Copying include directory, if exists
19 if [ -d "$install/usr/include" ]; then
20 cp -a $install/usr/include $fs/usr
21 fi
23 # Copying bin directory, if exists
24 if [ -d "$install/usr/bin" ]; then
25 cp -a $install/usr/bin $fs/usr
26 fi
28 # Copying pkgconfig directory, if exists
29 if [ -d "$install/usr/lib/pkgconfig" ]; then
30 test -d $install/usr/lib/ || mkdir -p $install/usr/lib/
31 cp -a $install/usr/lib/pkgconfig $fs/usr/lib
32 fi
34 # Copying static libraries, if exist
35 if ( find $install/usr/lib -name "*.*a" > /dev/null ); then
36 test -d $fs/usr/lib || mkdir -p $fs/usr/lib
37 cp -a $install/usr/lib/*.*a $fs/usr/lib
38 fi
39 }