mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-20 19:41:34 +01:00
libraries/libmaa: Added to 13.0 repository
This commit is contained in:
parent
778d9b10ee
commit
0ac6d02f66
4 changed files with 94 additions and 0 deletions
1
libraries/libmaa/README
Normal file
1
libraries/libmaa/README
Normal file
|
@ -0,0 +1 @@
|
||||||
|
libmaa is a dependency for dictd
|
64
libraries/libmaa/libmaa.SlackBuild
Normal file
64
libraries/libmaa/libmaa.SlackBuild
Normal file
|
@ -0,0 +1,64 @@
|
||||||
|
#!/bin/sh
|
||||||
|
|
||||||
|
# Slackware build script for libmaa
|
||||||
|
# Written by sercari <sercari@esdebian.org>
|
||||||
|
|
||||||
|
PRGNAM=libmaa
|
||||||
|
VERSION=1.1.1
|
||||||
|
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"
|
||||||
|
LIBDIRSUFFIX=""
|
||||||
|
elif [ "$ARCH" = "i686" ]; then
|
||||||
|
SLKCFLAGS="-O2 -march=i686 -mtune=i686"
|
||||||
|
LIBDIRSUFFIX=""
|
||||||
|
elif [ "$ARCH" = "x86_64" ]; then
|
||||||
|
SLKCFLAGS="-O2 -fPIC"
|
||||||
|
LIBDIRSUFFIX="64"
|
||||||
|
fi
|
||||||
|
|
||||||
|
set -e
|
||||||
|
|
||||||
|
rm -rf $PKG
|
||||||
|
mkdir -p $TMP $PKG $OUTPUT
|
||||||
|
cd $TMP
|
||||||
|
rm -rf $PRGNAM-$VERSION
|
||||||
|
tar xvf $CWD/$PRGNAM-$VERSION.tar.gz
|
||||||
|
cd $PRGNAM-$VERSION
|
||||||
|
chown -R root:root .
|
||||||
|
chmod -R u+w,go+r-w,a-s .
|
||||||
|
|
||||||
|
CFLAGS="$SLKCFLAGS" \
|
||||||
|
CXXFLAGS="$SLKCFLAGS" \
|
||||||
|
./configure \
|
||||||
|
--prefix=/usr \
|
||||||
|
--libdir=/usr/lib${LIBDIRSUFFIX} \
|
||||||
|
--build=$ARCH-slackware-linux
|
||||||
|
|
||||||
|
make
|
||||||
|
make install DESTDIR=$PKG
|
||||||
|
|
||||||
|
( cd $PKG/usr/man
|
||||||
|
find . -type f -exec gzip -9 {} \;
|
||||||
|
for i in $( find . -type l ) ; do ln -s $( readlink $i ).gz $i.gz ; rm $i ; done
|
||||||
|
)
|
||||||
|
|
||||||
|
mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
|
||||||
|
cp -a \
|
||||||
|
COPYING* ChangeLog NEWS README \
|
||||||
|
$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.${PKGTYPE:-tgz}
|
10
libraries/libmaa/libmaa.info
Normal file
10
libraries/libmaa/libmaa.info
Normal file
|
@ -0,0 +1,10 @@
|
||||||
|
PRGNAM="libmaa"
|
||||||
|
VERSION="1.1.1"
|
||||||
|
HOMEPAGE="http://sourceforge.net/dict"
|
||||||
|
DOWNLOAD="http://sourceforge.net/projects/dict/files/libmaa/libmaa-1.1.1/libmaa-1.1.1.tar.gz/download"
|
||||||
|
MD5SUM="0f3e1ef0e3dc6c516b8fb0cacef8f628"
|
||||||
|
DOWNLOAD_x86_64=""
|
||||||
|
MD5SUM_x86_64=""
|
||||||
|
MAINTAINER="sercari"
|
||||||
|
EMAIL="sercari@esdebian.org"
|
||||||
|
APPROVED="rworkman"
|
19
libraries/libmaa/slack-desc
Normal file
19
libraries/libmaa/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-----------------------------------------------------|
|
||||||
|
libmaa: libmaa
|
||||||
|
libmaa:
|
||||||
|
libmaa: libmaa is a dependency for dictd.
|
||||||
|
libmaa:
|
||||||
|
libmaa:
|
||||||
|
libmaa:
|
||||||
|
libmaa:
|
||||||
|
libmaa:
|
||||||
|
libmaa:
|
||||||
|
libmaa:
|
||||||
|
libmaa:
|
Loading…
Reference in a new issue