source: ipk/ipkg-utils-050831/ipkg-accept-incoming@ 9727

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
2set -e
3
4INCOMING="/home/familiar/incoming"
5OUTGOING="/home/familiar/website/data/familiar/releases/unstable/binary/armv4l/"
6
7pkgs=`find -maxdepth 1 $INCOMING -name '*.ipk'`
8
9if [ -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
17fi
18
Note: See TracBrowser for help on using the repository browser.