You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
366 B
23 lines
366 B
|
9 years ago
|
#!/bin/sh
|
||
|
|
##
|
||
|
|
## node-openpkg.sh
|
||
|
|
##
|
||
|
|
|
||
|
|
PATH=@l_prefix@/bin:$PATH
|
||
|
|
export PATH
|
||
|
|
|
||
|
|
cmd="$1"; shift
|
||
|
|
|
||
|
|
case "$cmd" in
|
||
|
|
squeeze )
|
||
|
|
# reduce files
|
||
|
|
@l_prefix@/bin/modclean -p . -n default:safe,default:caution -r -P
|
||
|
|
;;
|
||
|
|
install )
|
||
|
|
# install files
|
||
|
|
dst="$1"; shift
|
||
|
|
cp -rp node_modules/* "$RPM_BUILD_ROOT$dst"
|
||
|
|
;;
|
||
|
|
esac
|
||
|
|
|