summaryrefslogtreecommitdiffstats
path: root/abs/core/libidn/PKGBUILD
blob: 6fb7d247a7b47954e60e3cbd0ca7adf8215413b3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# $Id: PKGBUILD 356 2008-04-18 22:56:27Z aaron $
# Maintainer: Jan de Groot <jgc@archlinux.org>
# Contributor: Eric Johnson <eric@archlinux.org>
pkgname=libidn
pkgver=1.0
pkgrel=1
pkgdesc="Implementation of the Stringprep, Punycode and IDNA specifications"
arch=(i686 x86_64)
url="http://www.gnu.org/software/libidn/"
license=('GPL' 'LGPL')
depends=('glibc')
makedepends=('pkgconfig')
options=('!libtool')
source=(ftp://alpha.gnu.org/pub/gnu/libidn/${pkgname}-${pkgver}.tar.gz)
md5sums=('8a6a15dc061c0e17a97cb6b77d850e86')

build() {
  cd ${startdir}/src/${pkgname}-${pkgver}
  ./configure --prefix=/usr
  make || return 1
  make DESTDIR=${startdir}/pkg install
}