opt/itstool/Pkgfile

25 lines
508 B
Plaintext
Raw Normal View History

2023-08-27 17:40:19 +02:00
# Description: XML to PO and back again
# URL: https://itstool.org/
2023-08-27 17:40:19 +02:00
# Maintainer: Tim Biermann, tbier at posteo dot de
# Depends on: libxml2
2021-01-31 11:34:26 +01:00
name=itstool
2021-10-24 16:38:32 +02:00
version=2.0.7
release=3
source=(https://files.itstool.org/itstool/$name-$version.tar.bz2
2023-08-27 17:40:19 +02:00
fix_crash_918953.patch
fix_crash_912099.patch)
2021-01-31 11:34:26 +01:00
build() {
2023-08-27 17:40:19 +02:00
cd $name-$version
2021-01-31 11:34:26 +01:00
2023-08-27 17:40:19 +02:00
patch -p1 -i $SRC/fix_crash_912099.patch
patch -p1 -i $SRC/fix_crash_918953.patch
2023-08-27 17:40:19 +02:00
PYTHON=/usr/bin/python3 \
./configure --prefix=/usr
2021-01-31 11:34:26 +01:00
2023-08-27 17:40:19 +02:00
make
make DESTDIR=$PKG install
2021-01-31 11:34:26 +01:00
}