wok view squashfs-module/receipt @ rev 2814

fixed pkgconfig add in libQtCore
author Allan Pinto <allan316@gmail.com>
date Wed Apr 29 10:24:15 2009 +0000 (2009-04-29)
parents c1610baa4cf4
children f306d126580e
line source
1 # SliTaz package receipt.
3 PACKAGE="squashfs-module"
4 VERSION="3.3"
5 CATEGORY="base-system"
6 SHORT_DESC="Linux squashfs module."
7 MAINTAINER="pascal.bellard@slitaz.org"
8 WEB_SITE="http://squashfs.sourceforge.net/"
9 WANTED="squashfs"
11 # Rules to gen a SliTaz package suitable for Tazpkg.
12 genpkg_rules()
13 {
14 kver=$(grep "kernel version" ../linux/$(ls ../linux/taz)/.config)
15 kver=${kver##* }
16 EXTRAVERSION=_$kver
17 cp -a $src/_pkg/lib $fs
18 }
20 # Post install/remove commands for Tazpkg.
21 post_install()
22 {
23 depmod -a -b "$1/" ${EXTRAVERSION#_}-slitaz
24 }
26 post_remove()
27 {
28 depmod -a
29 }