mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-05 04:37:14 +08:00
20 lines
596 B
Bash
20 lines
596 B
Bash
# $Id: PKGBUILD 71579 2010-03-07 19:58:22Z jgc $
|
|
# Maintainer: Jan de Groot <jgc@archlinux.org>
|
|
|
|
pkgname=iso-codes
|
|
pkgver=3.14
|
|
pkgrel=1
|
|
arch=(any)
|
|
license=('LGPL')
|
|
pkgdesc="Lists of the country, language, and currency names"
|
|
url="http://pkg-isocodes.alioth.debian.org/"
|
|
source=(ftp://pkg-isocodes.alioth.debian.org/pub/pkg-isocodes/${pkgname}-${pkgver}.tar.bz2)
|
|
md5sums=('b4bedcd57de703ac4f9f4c21a77dc7d5')
|
|
|
|
build() {
|
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
|
./configure --prefix=/usr || return 1
|
|
make || return 1
|
|
make DESTDIR="${pkgdir}" pkgconfigdir=/usr/lib/pkgconfig install || return 1
|
|
}
|