|
Last change
on this file since 9727 was 4890, checked in by obi, 15 years ago |
|
[ipk] fix executable rights
|
-
Property svn:executable
set to
*
|
|
File size:
350 bytes
|
| Line | |
|---|
| 1 | #!/bin/sh
|
|---|
| 2 | set -e
|
|---|
| 3 |
|
|---|
| 4 | INCOMING="/home/familiar/incoming"
|
|---|
| 5 | OUTGOING="/home/familiar/website/data/familiar/releases/unstable/binary/armv4l/"
|
|---|
| 6 |
|
|---|
| 7 | pkgs=`find -maxdepth 1 $INCOMING -name '*.ipk'`
|
|---|
| 8 |
|
|---|
| 9 | if [ -n "$pkgs" ]; then
|
|---|
| 10 | for pkg in $pkgs; do
|
|---|
| 11 | (cd $OUTGOING/unpacked; ipkg-unbuild $pkg)
|
|---|
| 12 | mv $pkg $OUTGOING
|
|---|
| 13 | done
|
|---|
| 14 |
|
|---|
| 15 | cd $OUTGOING
|
|---|
| 16 | ipkg-make-index . > Packages
|
|---|
| 17 | fi
|
|---|
| 18 |
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.