blob: e0d0922f43ca0ea7419401c861bbd3a81e2290bc (
plain)
1 # Description: XML to PO and back again.
2 # URL: http://itstool.org/
3 # Maintainer: Danny Rawlins, crux at romster dot me
4 # Depends on: python3-libxml2
5
6 name=itstool
7 version=2.0.6
8 release=2
9 source=(http://files.itstool.org/itstool/$name-$version.tar.bz2)
10
11 build() {
12 cd $name-$version
13
14 PYTHON=/usr/bin/python3 \
15 ./configure --prefix=/usr
16
17 make
18 make DESTDIR=$PKG install
19 }
|