20 lines
517 B
Plaintext
20 lines
517 B
Plaintext
# Description: Utility for maintaining your dynamic DNS entries.
|
|
# URL: https://github.com/ddclient/ddclient
|
|
# Maintainer: Danny Rawlins, crux at romster dot me
|
|
# Depends on: p5-io-socket-ssl p5-io-socket-inet6 p5-digest-sha1 p5-data-validate-ip
|
|
|
|
name=ddclient
|
|
version=3.10.0
|
|
release=1
|
|
source=(https://github.com/ddclient/ddclient/archive/v$version/$name-v$version.tar.gz
|
|
ddclient.rc)
|
|
|
|
build() {
|
|
cd $name-$version
|
|
autoreconf -vfi
|
|
./configure --prefix=/usr \
|
|
--sysconfdir=/etc
|
|
make
|
|
make DESTDIR=$PKG install
|
|
}
|