mirror of
https://github.com/archr-linux/Arch-R.git
synced 2026-03-31 14:41:55 -07:00
15 lines
425 B
Bash
Executable File
15 lines
425 B
Bash
Executable File
#!/bin/sh
|
|
|
|
. config/options
|
|
|
|
PKG_DIR=`find $PACKAGES -type d -name $1`
|
|
STAMP=$STAMPS/$1/unpack
|
|
|
|
test $PKG_DIR/config/linux.$TARGET_ARCH.conf -nt $STAMP -o \
|
|
$PKG_DIR/config/linux.$TARGET_PLATFORM.conf -nt $STAMP -o \
|
|
$PROJECT_DIR/$PROJECT/linux/linux.$TARGET_ARCH.conf -nt $STAMP -o \
|
|
$PROJECT_DIR/$PROJECT/linux/linux.$TARGET_PLATFORM.conf -nt $STAMP -o \
|
|
$PKG_DIR/url -nt $STAMP && rm -f $STAMP
|
|
|
|
exit 0
|