contrib/c-ares/Pkgfile

29 lines
513 B
Plaintext

# Description: Asynchronous C DNS library
# URL: http://c-ares.haxx.se/
# Maintainer: James Mills, prologic at shortcircuit dot net dot au
#
# Depends on:
name=c-ares
version=1.10.0
release=2
source=(http://c-ares.haxx.se/download/$name-$version.tar.gz)
build() {
cd $name-$version
# Configure
./configure --prefix=/usr \
--enable-shared \
--mandir=/usr/man
# Build
make
# Package
make DESTDIR=$PKG install
# Cleanup
chown -R root:root $PKG
}