mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-01-04 00:02:17 +01:00
24 lines
646 B
Plaintext
24 lines
646 B
Plaintext
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
|
|
pkgname=intltool
|
|
pkgver=0.41.1
|
|
pkgrel=0
|
|
pkgdesc="The internationalization tool collection"
|
|
url="http://freedesktop.org/wiki/Software/intltool"
|
|
arch="noarch"
|
|
license="GPL"
|
|
depends="perl perl-xml-parser gettext"
|
|
subpackages="$pkgname-doc"
|
|
source="http://edge.launchpad.net/intltool/trunk/${pkgver}/+download/${pkgname}-${pkgver}.tar.gz"
|
|
|
|
build () {
|
|
cd "$srcdir"/$pkgname-$pkgver
|
|
./configure --prefix=/usr || return 1
|
|
make || return 1
|
|
}
|
|
|
|
package() {
|
|
cd "$srcdir"/$pkgname-$pkgver
|
|
make DESTDIR="$pkgdir" install || return 1
|
|
}
|
|
md5sums="d6c91bf06681919ccfdf3624035b75dc intltool-0.41.1.tar.gz"
|