source:
ipk/ipkg-utils-050831/ipkg-accept-incoming@
4860
| Last change on this file since 4860 was 4860, checked in by , 16 years ago | |
|---|---|
| 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.
![(please configure the [header_logo] section in trac.ini)](/openaaf/chrome/common/titannit_trac_banner.png)