mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-20 19:41:34 +01:00
system/virtinst: Updated for version 0.600.0 (+new maintainer)
Signed-off-by: Niels Horn <niels.horn@slackbuilds.org>
This commit is contained in:
parent
ee528f791e
commit
fd17bbdb2b
2 changed files with 9 additions and 13 deletions
|
@ -1,16 +1,14 @@
|
|||
#!/bin/sh
|
||||
|
||||
PRGNAM=virtinst
|
||||
VERSION=${VERSION:-0.500.2}
|
||||
VERSION=${VERSION:-0.600.0}
|
||||
BUILD=${BUILD:-1}
|
||||
TAG=${TAG:-_SBo}
|
||||
|
||||
# Automatically determine the architecture we're building on:
|
||||
if [ -z "$ARCH" ]; then
|
||||
case "$( uname -m )" in
|
||||
i?86) ARCH=i486 ;;
|
||||
arm*) ARCH=arm ;;
|
||||
# Unless $ARCH is already set, use uname -m for all other archs:
|
||||
*) ARCH=$( uname -m ) ;;
|
||||
esac
|
||||
fi
|
||||
|
@ -56,10 +54,8 @@ find $PKG | xargs file | grep -e "executable" -e "shared object" | grep ELF \
|
|||
|
||||
# Move and compress man pages
|
||||
mv $PKG/usr/share/man $PKG/usr
|
||||
( 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
|
||||
)
|
||||
find $PKG/usr/man -type f -exec gzip -9 {} \;
|
||||
for i in $( find $PKG/usr/man -type l ) ; do ln -s $( readlink $i ).gz $i.gz ; rm $i ; done
|
||||
|
||||
mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
|
||||
cp -a \
|
||||
|
|
|
@ -1,10 +1,10 @@
|
|||
PRGNAM="virtinst"
|
||||
VERSION="0.500.2"
|
||||
VERSION="0.600.0"
|
||||
HOMEPAGE="http://virt-manager.et.redhat.com"
|
||||
DOWNLOAD="http://virt-manager.et.redhat.com/download/sources/virtinst/virtinst-0.500.2.tar.gz"
|
||||
MD5SUM="8259de5523ba01b6398343b7c4545977"
|
||||
DOWNLOAD="http://virt-manager.et.redhat.com/download/sources/virtinst/virtinst-0.600.0.tar.gz"
|
||||
MD5SUM="d8f6a61d7edbc78129a8b5df2807ad46"
|
||||
DOWNLOAD_x86_64=""
|
||||
MD5SUM_x86_64=""
|
||||
MAINTAINER="Ash Wiren"
|
||||
EMAIL="ash@spooksoftware.com"
|
||||
APPROVED="dsomero"
|
||||
MAINTAINER="Zoran Stojakovic"
|
||||
EMAIL="stojakovic.zoran@gmail.com"
|
||||
APPROVED="Niels Horn"
|
||||
|
|
Loading…
Reference in a new issue