new: migrated more packages

This commit is contained in:
ngn
2024-07-22 21:38:11 +03:00
parent beea0545f8
commit 07d499fef5
32 changed files with 618 additions and 1 deletions

3
src/intltool/.gitignore vendored Normal file
View File

@ -0,0 +1,3 @@
.cache/
dist/
root/

2
src/intltool/changes.md Normal file
View File

@ -0,0 +1,2 @@
# 0.51.0
First version

25
src/intltool/pkg.sh Normal file
View File

@ -0,0 +1,25 @@
# general info
NAME="intltool"
DESC="Utility scripts for internationalizing XML"
VERSION="0.51.0"
# required files
FILES=("https://launchpad.net/intltool/trunk/${VERSION}/+download/intltool-${VERSION}.tar.gz")
HASHES=("12e517cac2b57a0121cda351570f1e63")
# install and build depends
DEPENDS=("xml-parser")
BUILD=()
build(){
tar xf "${NAME}-${VERSION}.tar.gz"
cd "${NAME}-${VERSION}"
sed -i 's:\\\${:\\\$\\{:' intltool-update.in
./configure --prefix=/usr
make
make DESTDIR="${ROOTDIR}" install
install -v -Dm644 doc/I18N-HOWTO "${ROOTDIR}/usr/share/doc/intltool-${VERSION}/I18N-HOWTO"
cd .. && rm -r "${NAME}-${VERSION}"
}