blob: 7530db927515d97dcd1fb2c39f3feed0f0db5f30 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
#!/bin/sh
MAKEDEPS="make "
DEPS="perl-xml-parser"
PKG_VER=0.51.0
SOURCE=https://launchpad.net/intltool/trunk/$PKG_VER/+download/intltool-$PKG_VER.tar.gz
DESC="The internationalization tool collection"
build () {
./configure --prefix=/usr
make
}
check () {
make check
}
package () {
make DESTDIR=$PKG_DEST install
install -v -Dm644 doc/I18N-HOWTO $PKG_DEST/usr/share/doc/intltool-$PKG_VER/I18N-HOWTO
}
|