mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-21 19:42:24 +01:00
libraries/liblinebreak: Added to 12.1 repository
This commit is contained in:
parent
2bd572d89d
commit
ffc2ab630b
4 changed files with 86 additions and 0 deletions
2
libraries/liblinebreak/README
Normal file
2
libraries/liblinebreak/README
Normal file
|
@ -0,0 +1,2 @@
|
|||
liblinebreak is an implementation of the line breaking algorithm as
|
||||
described in Unicode 5.0.0 Standard Annex 14.
|
57
libraries/liblinebreak/liblinebreak.SlackBuild
Normal file
57
libraries/liblinebreak/liblinebreak.SlackBuild
Normal file
|
@ -0,0 +1,57 @@
|
|||
#!/bin/sh
|
||||
|
||||
# Slackware build script for liblinebreak
|
||||
|
||||
# Written by Audrius Kažukauskas <neobug@tornado.ktu.lt>
|
||||
|
||||
PRGNAM=liblinebreak
|
||||
VERSION=${VERSION:-0.9.6}
|
||||
ARCH=${ARCH:-i486}
|
||||
BUILD=${BUILD:-1}
|
||||
TAG=${TAG:-_SBo}
|
||||
|
||||
CWD=$(pwd)
|
||||
TMP=${TMP:-/tmp/SBo}
|
||||
PKG=$TMP/package-$PRGNAM
|
||||
OUTPUT=${OUTPUT:-/tmp}
|
||||
|
||||
if [ "$ARCH" = "i486" ]; then
|
||||
SLKCFLAGS="-O2 -march=i486 -mtune=i686"
|
||||
elif [ "$ARCH" = "i686" ]; then
|
||||
SLKCFLAGS="-O2 -march=i686 -mtune=i686"
|
||||
elif [ "$ARCH" = "x86_64" ]; then
|
||||
SLKCFLAGS="-O2 -fPIC"
|
||||
fi
|
||||
|
||||
set -e
|
||||
|
||||
rm -rf $PKG
|
||||
mkdir -p $TMP $PKG $OUTPUT
|
||||
cd $TMP
|
||||
rm -rf linebreak
|
||||
unzip $CWD/linebreak.zip
|
||||
cd linebreak
|
||||
chown -R root:root .
|
||||
find . \
|
||||
\( -perm 777 -o -perm 775 -o -perm 711 -o -perm 555 -o -perm 511 \) \
|
||||
-exec chmod 755 {} \; -o \
|
||||
\( -perm 666 -o -perm 664 -o -perm 600 -o -perm 444 -o -perm 440 -o -perm 400 \) \
|
||||
-exec chmod 644 {} \;
|
||||
|
||||
# Patch Makefile to use SLKCFLAGS
|
||||
sed -i "s/^CFLAGS =/CFLAGS = $SLKCFLAGS/" Makefile
|
||||
make release
|
||||
|
||||
mkdir -p $PKG/usr/{lib,include}
|
||||
cp -a linebreak.h $PKG/usr/include
|
||||
cp -a ReleaseDir/liblinebreak.a $PKG/usr/lib
|
||||
|
||||
mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
|
||||
cp -a LICENCE README ChangeLog $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 $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.tgz
|
8
libraries/liblinebreak/liblinebreak.info
Normal file
8
libraries/liblinebreak/liblinebreak.info
Normal file
|
@ -0,0 +1,8 @@
|
|||
PRGNAM="liblinebreak"
|
||||
VERSION="0.9.6"
|
||||
HOMEPAGE="http://wyw.dcweb.cn/"
|
||||
DOWNLOAD="http://wyw.dcweb.cn/download.asp?path=&file=linebreak.zip"
|
||||
MD5SUM="d5318c1a570b422c2f5441e313b6271b"
|
||||
MAINTAINER="Audrius Kazukauskas"
|
||||
EMAIL="neobug@tornado.ktu.lt"
|
||||
APPROVED="David Somero"
|
19
libraries/liblinebreak/slack-desc
Normal file
19
libraries/liblinebreak/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 ':'.
|
||||
|
||||
|-----handy-ruler------------------------------------------------------|
|
||||
liblinebreak: liblinebreak - line breaking library
|
||||
liblinebreak:
|
||||
liblinebreak: liblinebreak is an implementation of the line breaking algorithm as
|
||||
liblinebreak: described in Unicode 5.0.0 Standard Annex 14.
|
||||
liblinebreak:
|
||||
liblinebreak: Homepage: http://wyw.dcweb.cn/
|
||||
liblinebreak:
|
||||
liblinebreak:
|
||||
liblinebreak:
|
||||
liblinebreak:
|
||||
liblinebreak:
|
Loading…
Reference in a new issue