mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-03 12:57:14 +08:00
29 lines
631 B
Bash
29 lines
631 B
Bash
# Maintainer: abveritas@chakra-project.org
|
|
|
|
pkgname=libidn
|
|
pkgver=1.26
|
|
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')
|
|
makedepends=('pkgconfig')
|
|
options=('!libtool')
|
|
source=("http://ftp.gnu.org/gnu/${pkgname}/${pkgname}-${pkgver}.tar.gz")
|
|
install=libidn.install
|
|
md5sums=('7533d14fbbb6c026a1a9eaa2179ccb69')
|
|
|
|
build() {
|
|
cd ${srcdir}/${pkgname}-${pkgver}
|
|
|
|
./configure --prefix=/usr
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd ${srcdir}/${pkgname}-${pkgver}
|
|
|
|
make DESTDIR=${pkgdir} install
|
|
}
|