wok-next view spl/receipt @ rev 20251

Rethink $EXTRAVERSION: aufs, broadcom-wl, dahdi-linux, iptables, linux-cloop, ndiswrapper-driver, nvidia-173xx, nvidia-96xx, open-vm-tools-kernel, spl; typo: mygestures; fix build & v2: lucene++
author Aleksej Bobylev <al.bobylev@gmail.com>
date Tue Nov 07 14:03:40 2017 +0200 (2017-11-07)
parents 6fab3264ba87
children 5609d4188484
line source
1 # SliTaz package receipt.
3 PACKAGE="spl"
4 VERSION="0.6.2"
5 EXTRAVERSION="_$kvers"
6 CATEGORY="system-tools"
7 SHORT_DESC="Solaris Porting Layer for ZFS"
8 MAINTAINER="pascal.bellard@slitaz.org"
9 LICENSE="GPL2"
10 WEB_SITE="http://zfsonlinux.org/"
11 TARBALL="$PACKAGE-$VERSION.tar.gz"
12 WGET_URL="http://archive.zfsonlinux.org/downloads/zfsonlinux/$PACKAGE/$TARBALL"
14 DEPENDS=""
15 BUILD_DEPENDS="linux-module-headers"
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 ./configure --prefix=/usr \
21 --mandir=/usr/share/man \
22 --with-linux=/usr/src/linux \
23 $CONFIGURE_ARGS &&
24 make &&
25 make DESTDIR=$DESTDIR install
26 }
28 # Rules to gen a SliTaz package suitable for Tazpkg.
29 genpkg_rules()
30 {
31 mkdir -p $fs/usr
32 cp -a $install/usr/sbin $fs/usr
33 cp -a $install/lib $fs
34 }