new: migrated more packages
This commit is contained in:
3
src/intltool/.gitignore
vendored
Normal file
3
src/intltool/.gitignore
vendored
Normal file
@ -0,0 +1,3 @@
|
||||
.cache/
|
||||
dist/
|
||||
root/
|
2
src/intltool/changes.md
Normal file
2
src/intltool/changes.md
Normal file
@ -0,0 +1,2 @@
|
||||
# 0.51.0
|
||||
First version
|
25
src/intltool/pkg.sh
Normal file
25
src/intltool/pkg.sh
Normal 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}"
|
||||
}
|
Reference in New Issue
Block a user