mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-04 20:29:09 +01:00
python/python-elib.intl: Added (i18n services).
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
This commit is contained in:
parent
93dfb09d1b
commit
63d10ab859
4 changed files with 89 additions and 0 deletions
2
python/python-elib.intl/README
Normal file
2
python/python-elib.intl/README
Normal file
|
@ -0,0 +1,2 @@
|
|||
The elib.intl module provides enhanced internationalization (I18N) services
|
||||
for your Python modules and applications.
|
58
python/python-elib.intl/python-elib.intl.SlackBuild
Normal file
58
python/python-elib.intl/python-elib.intl.SlackBuild
Normal file
|
@ -0,0 +1,58 @@
|
|||
#!/bin/sh
|
||||
|
||||
## Written by Erwin van Zanten (e.van.zanten.evz@gmail.com)
|
||||
|
||||
## Feel free to use, modify, redistribute this script.
|
||||
## If you make changes please modify the "Written by"
|
||||
## so that I don't recieve emails about a script I
|
||||
## did not write. Thanks.
|
||||
|
||||
# Mofified by the SlackBuilds.org project
|
||||
|
||||
# Maintained by Erwin van Zanten <e.van.zanten.evz@gmail.com>
|
||||
|
||||
PRGNAM=python-elib.intl
|
||||
SRC_NAME=elib.intl
|
||||
VERSION=${VERSION:-0.0.3_git20110809}
|
||||
SRCVERSION=$(echo $VERSION | tr _ "~")
|
||||
BUILD=${BUILD:-1}
|
||||
TAG=${TAG:-_SBo}
|
||||
|
||||
if [ -z "$ARCH" ]; then
|
||||
case "$( uname -m )" in
|
||||
i?86) ARCH=i486 ;;
|
||||
arm*) ARCH=arm ;;
|
||||
*) ARCH=$( uname -m ) ;;
|
||||
esac
|
||||
fi
|
||||
|
||||
CWD=$(pwd)
|
||||
TMP=${TMP:-/tmp/SBo}
|
||||
PKG=${PKG:-$TMP/package-$SRC_NAME}
|
||||
OUTPUT=${OUTPUT:-/tmp}
|
||||
|
||||
set -e
|
||||
|
||||
rm -rf $PKG
|
||||
mkdir -p $TMP $PKG $OUTPUT
|
||||
cd $TMP
|
||||
rm -rf $SRC_NAME-$SRCVERSION
|
||||
tar -xvf $CWD/${SRC_NAME}_${SRCVERSION}.orig.tar.gz
|
||||
cd $SRC_NAME-$SRCVERSION
|
||||
chown -R root:root .
|
||||
find -L . \
|
||||
\( -perm 777 -o -perm 775 -o -perm 750 -o -perm 711 -o -perm 555 \
|
||||
-o -perm 511 \) -exec chmod 755 {} \; -o \
|
||||
\( -perm 666 -o -perm 664 -o -perm 640 -o -perm 600 -o -perm 444 \
|
||||
-o -perm 440 -o -perm 400 \) -exec chmod 644 {} \;
|
||||
python setup.py install --root=$PKG
|
||||
|
||||
mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
|
||||
cp -a TODO README MANIFEST* COPYING* $PKG/usr/doc/$PRGNAM-$VERSION
|
||||
cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild
|
||||
|
||||
mkdir -p $PKG/install
|
||||
cat $CWD/slack-desc > $PKG/install/slack-desc
|
||||
|
||||
cd $PKG
|
||||
/sbin/makepkg -l y -c n -p $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.${PKGTYPE:-tgz}
|
10
python/python-elib.intl/python-elib.intl.info
Normal file
10
python/python-elib.intl/python-elib.intl.info
Normal file
|
@ -0,0 +1,10 @@
|
|||
PRGNAM="python-elib.intl"
|
||||
VERSION="0.0.3_git20110809"
|
||||
HOMEPAGE="https://github.com/dieterv/elib.intl"
|
||||
DOWNLOAD="https://launchpad.net/ubuntu/+archive/primary/+files/elib.intl_0.0.3%7Egit20110809.orig.tar.gz"
|
||||
MD5SUM="4d86ae5019670bd8e0be85ce89c3c9b9"
|
||||
DOWNLOAD_x86_64=""
|
||||
MD5SUM_x86_64=""
|
||||
REQUIRES=""
|
||||
MAINTAINER="Erwin van Zanten"
|
||||
EMAIL="e.van.zanten.evz@gmail.com"
|
19
python/python-elib.intl/slack-desc
Normal file
19
python/python-elib.intl/slack-desc
Normal file
|
@ -0,0 +1,19 @@
|
|||
# HOW TO EDIT THIS FILE:
|
||||
# The "handy ruler" below makes it easier to edit a package description.
|
||||
# Line up the first '|' above the ':' following the base package name, and
|
||||
# the '|' on the right side marks the last column you can put a character in.
|
||||
# You must make exactly 11 lines for the formatting to be correct. It's also
|
||||
# customary to leave one space after the ':' except on otherwise blank lines.
|
||||
|
||||
|-----handy-ruler------------------------------------------------------|
|
||||
python-elib.intl: python-elib.intl (i18n services)
|
||||
python-elib.intl:
|
||||
python-elib.intl: The elib.intl module provides enhanced internationalization (I18N)
|
||||
python-elib.intl: services for your Python modules and applications.
|
||||
python-elib.intl:
|
||||
python-elib.intl:
|
||||
python-elib.intl:
|
||||
python-elib.intl:
|
||||
python-elib.intl:
|
||||
python-elib.intl:
|
||||
python-elib.intl:
|
Loading…
Reference in a new issue