mirror of
ssh://git.janware.com/srv/git/janware/proj/jw-pkg
synced 2026-01-15 20:13:32 +01:00
71 lines
2.3 KiB
Bash
71 lines
2.3 KiB
Bash
echo "Name: $NAME"
|
|
echo "Summary: Jannet IT Services Tool Library"
|
|
echo "Version: $VERSION"
|
|
echo "Release: $RELEASE"
|
|
echo "License: LGPL"
|
|
echo "Group: System Environment/Libraries"
|
|
[ -n "$SOURCE" ] && echo "Source: $SOURCE"
|
|
echo "Vendor: Jannet IT Services"
|
|
echo "URL: http://www.jannet.de"
|
|
echo "BuildRoot: /var/tmp/%{name}-buildroot"
|
|
echo ""
|
|
echo "%description"
|
|
echo "This is a library providing easy-to-use interfaces for:"
|
|
echo ""
|
|
echo "+ platform independent logging"
|
|
echo "+ platform independent locking"
|
|
echo "+ platform independent threads"
|
|
echo "+ platform independent profiling"
|
|
echo "+ a platform independent config file reader"
|
|
echo "+ shared memory"
|
|
echo "+ a lightweight middleware suite"
|
|
echo ""
|
|
echo "It was originally designed to be a versatile pool of"
|
|
echo "programming tools to be used in my projects as a freelancing"
|
|
echo "software developer."
|
|
echo ""
|
|
echo "%package -n $NAME-run"
|
|
echo "Summary: The runtime library package."
|
|
echo "Group: System Environment/Libraries"
|
|
echo "Provides: $NAME = $VERSION"
|
|
echo "%description -n $NAME-run"
|
|
echo "runtime library package of the ytools library"
|
|
echo ""
|
|
echo "%package -n $NAME-devel"
|
|
echo "Summary: The development library package."
|
|
echo "Group: System Environment/Libraries"
|
|
if [ -n "$REQUIRES_DEVEL" ]; then echo "Requires: $REQUIRES_DEVEL"; fi
|
|
echo "%description -n $NAME-devel"
|
|
echo "development library package of the ytools library"
|
|
echo ""
|
|
#echo "%debug_package"
|
|
echo "%prep"
|
|
echo "%setup -q -n $NAME-$V"
|
|
echo ""
|
|
echo "%build"
|
|
echo 'pwd'
|
|
echo 'make config'
|
|
echo 'make'
|
|
echo ""
|
|
echo "%install"
|
|
echo "export ENV_PREFIX=\$RPM_BUILD_ROOT/"
|
|
echo "export INSTALL_LOG=$INSTALL_LOG"
|
|
echo "rm -rf `dirname $INSTALL_LOG`"
|
|
echo "mkdir -p `dirname $INSTALL_LOG`"
|
|
echo "> $INSTALL_LOG"
|
|
echo "make install"
|
|
echo "cat $INSTALL_LOG | sed \"s% \$RPM_BUILD_ROOT% %\" | grep -ve '"$FILTER_DEVEL"' > $INSTALL_LOG-run"
|
|
echo "cat $INSTALL_LOG | sed \"s% \$RPM_BUILD_ROOT% %\" | grep -e '"$FILTER_DEVEL"' > $INSTALL_LOG-devel"
|
|
echo ""
|
|
echo "%post -n $NAME-run"
|
|
if [ "$TARGET" != mingw ]; then
|
|
echo "/opt/ytools/bin/jcs init"
|
|
echo "if [ -x /sbin/mkinitrd_setup ]; then /sbin/mkinitrd_setup; fi"
|
|
fi
|
|
echo ""
|
|
echo "%clean"
|
|
echo "%files -n $NAME-run -f $INSTALL_LOG-run"
|
|
echo "%files -n $NAME-devel -f $INSTALL_LOG-devel"
|
|
echo '%defattr (-, root, root)'
|
|
echo ""
|
|
|