wok-stable rev 7739
Added pre_install and post_remove to hd2u.
author | Christopher Rogers <slaxemulator@gmail.com> |
---|---|
date | Mon Dec 20 08:07:07 2010 +0000 (2010-12-20) |
parents | 5b1450e90bf6 |
children | fbd44bd505d9 |
files | hd2u/receipt |
line diff
1.1 --- a/hd2u/receipt Mon Dec 20 14:58:13 2010 +0100 1.2 +++ b/hd2u/receipt Mon Dec 20 08:07:07 2010 +0000 1.3 @@ -30,3 +30,20 @@ 1.4 cp -a $_pkg/usr/bin $fs/usr 1.5 } 1.6 1.7 +# Pre and post install commands for Tazpkg. 1.8 +# We must remove all Busybox symlink before installing. 1.9 +# 1.10 +pre_install() 1.11 +{ 1.12 + local root 1.13 + root=$1 1.14 + echo "Processing pre-install commands..." 1.15 + echo -n "Removing all Busybox replaced utils... " 1.16 + rm -f $root/usr/bin/dos2unix 1.17 + status 1.18 +} 1.19 + 1.20 +post_remove() 1.21 +{ 1.22 + ln -s /bin/busybox /usr/bin/dos2unix 1.23 +} 1.24 \ No newline at end of file