system/gparted: Initial import
This commit is contained in:
parent
b6eeac29fc
commit
b0ecc439ed
|
@ -0,0 +1,11 @@
|
|||
GParted uses GNU libparted to detect and manipulate devices and
|
||||
partition tables. Several (optional) "file system" tools provide
|
||||
support for file systems not included in libparted. These optional
|
||||
packages will be detected at runtime and do not require a rebuild
|
||||
of GParted. GParted is written in C++ and uses gtkmm for it's
|
||||
Graphical User Interface (GUI).
|
||||
|
||||
gtkmm, which is available at slackbuilds.org, and parted, which
|
||||
can be found on the second Slackware CD in extra/ or on any official
|
||||
Slackware mirror, are required to build gparted.
|
||||
|
|
@ -0,0 +1,3 @@
|
|||
if [ -x usr/bin/update-desktop-database ]; then
|
||||
usr/bin/update-desktop-database &> /dev/null
|
||||
fi
|
|
@ -0,0 +1,51 @@
|
|||
#!/bin/sh
|
||||
|
||||
# Slackware build script for GParted
|
||||
# Written by Erik Hanson erik@slackbuilds.org
|
||||
|
||||
PRGNAM=gparted
|
||||
VERSION=0.3.3
|
||||
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"
|
||||
fi
|
||||
|
||||
rm -rf $PKG
|
||||
mkdir -p $TMP $PKG $OUTPUT
|
||||
cd $TMP
|
||||
rm -rf $PRGNAM-$VERSION
|
||||
tar xvf $CWD/$PRGNAM-$VERSION.tar.bz2 || exit 1
|
||||
cd $PRGNAM-$VERSION
|
||||
chown -R root:root .
|
||||
chmod -R u+w,go+r-w,a-s .
|
||||
|
||||
CFLAGS="$SLKCFLAGS" \
|
||||
./configure \
|
||||
--prefix=/usr \
|
||||
--sysconfdir=/etc \
|
||||
--localstatedir=/var \
|
||||
|| exit 1
|
||||
|
||||
make || exit 1
|
||||
make install DESTDIR=$PKG || exit 1
|
||||
|
||||
find $PKG | xargs file | egrep "ELF.*executable" | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null
|
||||
sed -i 's|Icon=gparted.png|Icon=/usr/share/pixmaps/gparted.png|' $PKG/usr/share/applications/gparted.desktop
|
||||
|
||||
mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION $PKG/install
|
||||
cp -a AUTHORS COPYING ChangeLog INSTALL NEWS README $PKG/usr/doc/$PRGNAM-$VERSION
|
||||
cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild
|
||||
cat $CWD/slack-desc > $PKG/install/slack-desc
|
||||
cat $CWD/doinst.sh > $PKG/install/doinst.sh
|
||||
|
||||
cd $PKG
|
||||
/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.tgz
|
|
@ -0,0 +1,8 @@
|
|||
PRGNAM="gparted"
|
||||
VERSION="0.3.3"
|
||||
HOMEPAGE="http://gparted.sourceforge.net/"
|
||||
DOWNLOAD="http://dl.sourceforge.net/sourceforge/gparted/gparted-0.3.3.tar.bz2"
|
||||
MD5SUM="f3d16ccfda72fa1dac9fa1ff9ded2c42"
|
||||
MAINTAINER="Erik Hanson"
|
||||
EMAIL="erik@slackbuilds.org"
|
||||
APPROVED="BP{k}"
|
|
@ -0,0 +1,11 @@
|
|||
gparted: Gnome Partition Editor
|
||||
gparted:
|
||||
gparted: GParted uses GNU libparted to detect and manipulate devices and
|
||||
gparted: partition tables. Several (optional) "file system" tools provide
|
||||
gparted: support for file systems not included in libparted. These optional
|
||||
gparted: packages will be detected at runtime and do not require a rebuild
|
||||
gparted: of GParted. GParted is written in C++ and uses gtkmm for it's
|
||||
gparted: Graphical User Interface (GUI).
|
||||
gparted:
|
||||
gparted: http://gparted.sourceforge.net/
|
||||
gparted:
|
Loading…
Reference in New Issue