Files
Arch-R/packages/linux/need_unpack
Stephan Raue de71016fb4 initial import
2009-03-18 13:02:53 +01:00

13 lines
247 B
Bash
Executable File

#!/bin/sh
. config/options
PKG_DIR=`find $PACKAGES -type d -name $1`
STAMP=$STAMPS/$1/unpack
test $PKG_DIR/config/$1.$TARGET_ARCH.conf -nt $STAMP && rm -f $STAMP
test $PKG_DIR/config/$1.$TARGET_PLATFORM.conf -nt $STAMP && rm -f $STAMP
exit 0