# HG changeset patch # User Pascal Bellard # Date 1391437164 0 # Node ID c9caaa19d909863352f815712f7616680ea2a33f # Parent baeb47f15a92cee177257b024da7ea21b0be866b spl: add EXTRAVERSION diff -r baeb47f15a92 -r c9caaa19d909 spl/receipt --- a/spl/receipt Mon Feb 03 11:55:38 2014 +0000 +++ b/spl/receipt Mon Feb 03 14:19:24 2014 +0000 @@ -2,6 +2,7 @@ PACKAGE="spl" VERSION="0.6.2" +EXTRAVERSION="_${kvers}" CATEGORY="system-tools" SHORT_DESC="Solaris Porting LAyer for ZFS." MAINTAINER="pascal.bellard@slitaz.org" @@ -32,3 +33,16 @@ cp -a $install/usr/sbin $fs/usr cp -a $install/lib $fs } + +# Post install/remove commands for Tazpkg. +post_install() +{ + echo "Processing post-install commands..." + chroot "$root/" depmod -a ${EXTRAVERSION#_}-slitaz +} + +post_remove() +{ + echo "Processing post-remove commands..." + chroot "$root/" depmod -a ${EXTRAVERSION#_}-slitaz +}