wok-4.x rev 3535

Update: gawk - add post_remove
author Matthew Sheets <rcx@zoominternet.net>
date Mon Jun 22 09:38:19 2009 +0000 (2009-06-22)
parents 4787fefb7398
children df87c33c0cc6
files gawk/receipt
line diff
     1.1 --- a/gawk/receipt	Mon Jun 22 17:35:58 2009 +0800
     1.2 +++ b/gawk/receipt	Mon Jun 22 09:38:19 2009 +0000
     1.3 @@ -36,7 +36,8 @@
     1.4  	strip -s $fs/usr/bin/*
     1.5  }
     1.6  
     1.7 -# Post install to avoid erasing Busybox link
     1.8 +# Pre and post install commands for Tazpkg.
     1.9 +# We must remove all Busybox symlink before installing.
    1.10  pre_install()
    1.11  {
    1.12  	local root
    1.13 @@ -44,3 +45,7 @@
    1.14  	rm -f $root/usr/bin/awk
    1.15  }
    1.16  
    1.17 +post_remove()
    1.18 +{
    1.19 +	ln -s /bin/busybox /usr/bin/awk
    1.20 +}