blob: 4c0a045f05bd00db6fff6714a246cefdb103c064 (
plain)
1 # Description: Internationalization tool collection.
2 # URL: https://freedesktop.org/wiki/Software/intltool/
3 # Maintainer: CRUX System Team, core-ports at crux dot nu
4 # Depends on: p5-xml-parser
5
6 name=intltool
7 version=0.51.0
8 release=2
9 source=(http://edge.launchpad.net/$name/trunk/$version/+download/$name-$version.tar.gz \
10 intltool-perl-5.22.patch)
11
12
13 build() {
14 cd $name-$version
15 patch -p0 -i $SRC/intltool-perl-5.22.patch
16 ./configure --prefix=/usr
17
18 make
19 make DESTDIR=$PKG install
20 }
|