wok view alsa-lib-dev/receipt @ rev 15141

blackbox: typo
author Pascal Bellard <pascal.bellard@slitaz.org>
date Thu Aug 15 11:37:41 2013 +0000 (2013-08-15)
parents 2ceee1891179
children 851fc1686394
line source
1 # SliTaz package receipt.
3 PACKAGE="alsa-lib-dev"
4 VERSION="1.0.27.1"
5 CATEGORY="development"
6 SHORT_DESC="Alsa sound libraries devel files."
7 MAINTAINER="pankso@slitaz.org"
8 LICENSE="LGPL2.1"
9 DEPENDS="alsa-lib"
10 WANTED="alsa-lib"
11 WEB_SITE="http://www.alsa-project.org/"
13 # Rules to gen a SliTaz package suitable for Tazpkg.
14 genpkg_rules()
15 {
16 mkdir -p $fs/usr/lib $fs/usr/share
17 cp -a $install/usr/include $fs/usr
18 cp -a $install/usr/lib/*.*a $fs/usr/lib
19 cp -a $install/usr/lib/pkgconfig $fs/usr/lib
20 cp -a $install/usr/share/aclocal $fs/usr/share
21 # Copy all and then remove shared libs.
22 cp -a $install/usr/lib/alsa-lib $fs/usr/lib
23 rm $fs/usr/lib/alsa-lib/smixer/*.so*
24 }