core/libidn/PKGBUILD
2015-08-10 22:45:31 +00:00

25 lines
583 B
Bash

# Maintainer: abveritas@chakra-project.org
pkgname=libidn
pkgver=1.32
pkgrel=1
pkgdesc="Implementation of the Stringprep, Punycode and IDNA specifications"
url="http://www.gnu.org/software/libidn/"
arch=('x86_64')
license=('GPL3' 'LGPL')
depends=('glibc' 'texinfo')
source=(http://ftp.gnu.org/gnu/${pkgname}/${pkgname}-${pkgver}.tar.gz)
install=libidn.install
sha1sums=('ddd018611b98af7c67d434aa42d15d39f45129f5')
build() {
cd ${srcdir}/${pkgname}-${pkgver}
./configure --prefix=/usr
make
}
package() {
cd ${srcdir}/${pkgname}-${pkgver}
make DESTDIR=${pkgdir} install
}