blob: 39a705448e88cee26c502ffba780ec76408d33d9 (
plain)
1 # Description: Utility for maintaining your dynamic DNS entries
2 # Maintainer: Jay Dolan, jdolan at jdolan dot dyndns dot org
3 # URL: http://ddclient.sf.net
4 # Depends on:
5
6 name=ddclient
7 version=3.6.7
8 release=1
9 source=(http://dl.sf.net/$name/$name-$version.tar.bz2 ddclient)
10
11 build(){
12 cd $name-$version
13 install -d $PKG/usr/sbin
14 install ddclient $PKG/usr/sbin/
15 sed -i "s|/etc/ddclient/|/etc/|" $PKG/usr/sbin/ddclient
16
17 install -d $PKG/etc/rc.d
18 install ../ddclient $PKG/etc/rc.d/ddclient
19 install -m 600 sample-etc_ddclient.conf $PKG/etc/ddclient.conf
20 }
|