contrib/c-ares/Pkgfile
2015-02-17 11:09:04 +10:00

26 lines
470 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=3
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
}