mirror of
https://github.com/archr-linux/Arch-R.git
synced 2026-03-31 14:41:55 -07:00
- big rework of projects/*/options, config/options, config/path. - most configurable options now under project folder
14 lines
222 B
Bash
Executable File
14 lines
222 B
Bash
Executable File
#!/bin/sh
|
|
|
|
. config/options
|
|
|
|
STAMP=$STAMPS/$1/unpack
|
|
PKG_DIR=`find $PACKAGES -type d -name $1`
|
|
|
|
. $STAMP
|
|
|
|
test $PKG_DIR/config/$1.conf -nt $STAMP && rm -f $STAMP
|
|
# test $STAMP_DEVTOOLS != $DEVTOOLS && rm -f $STAMP
|
|
|
|
exit 0
|