mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-20 19:41:34 +01:00
system/simpleburn: Updated for version 1.8.1.
Signed-off-by: David Spencer <idlemoor@slackbuilds.org>
This commit is contained in:
parent
66425fcca7
commit
3e25973172
5 changed files with 25 additions and 21 deletions
|
@ -1,8 +1,9 @@
|
|||
SimpleBurn: a CD / DVD burning and extraction tool
|
||||
|
||||
SimpleBurn is a minimalistic application for burning and extracting CDs and DVDs.
|
||||
It basically is a Cdrtools frontend and is designed in two parts: the GUI (GTK) and
|
||||
a BASH script that handle the requested actions.
|
||||
SimpleBurn is a minimalistic application for burning and extracting CDs
|
||||
and DVDs. It basically is a Cdrtools frontend and is designed in two
|
||||
parts: the GUI (GTK) and a BASH script that handles the requested
|
||||
actions.
|
||||
|
||||
Features are:
|
||||
- CD/DVD ISO image extraction and burning
|
||||
|
@ -11,3 +12,5 @@ Features are:
|
|||
- rewritable CD/DVD blanking
|
||||
- video DVD ripping
|
||||
- languages: cs, de, en, es, fr, hu, it, pl, sv, ru
|
||||
|
||||
http://simpleburn.tuxfamily.org
|
||||
|
|
|
@ -7,9 +7,3 @@ if [ -e usr/share/icons/hicolor/icon-theme.cache ]; then
|
|||
/usr/bin/gtk-update-icon-cache usr/share/icons/hicolor >/dev/null 2>&1
|
||||
fi
|
||||
fi
|
||||
|
||||
if [ -e usr/share/glib-2.0/schemas ]; then
|
||||
if [ -x /usr/bin/glib-compile-schemas ]; then
|
||||
/usr/bin/glib-compile-schemas usr/share/glib-2.0/schemas >/dev/null 2>&1
|
||||
fi
|
||||
fi
|
||||
|
|
|
@ -23,13 +23,13 @@
|
|||
# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
|
||||
PRGNAM=simpleburn
|
||||
VERSION=${VERSION:-1.7.3}
|
||||
VERSION=${VERSION:-1.8.1}
|
||||
BUILD=${BUILD:-1}
|
||||
TAG=${TAG:-_SBo}
|
||||
|
||||
if [ -z "$ARCH" ]; then
|
||||
case "$( uname -m )" in
|
||||
i?86) ARCH=i486 ;;
|
||||
i?86) ARCH=i586 ;;
|
||||
arm*) ARCH=arm ;;
|
||||
*) ARCH=$( uname -m ) ;;
|
||||
esac
|
||||
|
@ -40,8 +40,8 @@ TMP=${TMP:-/tmp/SBo}
|
|||
PKG=$TMP/package-$PRGNAM
|
||||
OUTPUT=${OUTPUT:-/tmp}
|
||||
|
||||
if [ "$ARCH" = "i486" ]; then
|
||||
SLKCFLAGS="-O2 -march=i486 -mtune=i686"
|
||||
if [ "$ARCH" = "i586" ]; then
|
||||
SLKCFLAGS="-O2 -march=i586 -mtune=i686"
|
||||
LIBDIRSUFFIX=""
|
||||
elif [ "$ARCH" = "i686" ]; then
|
||||
SLKCFLAGS="-O2 -march=i686 -mtune=i686"
|
||||
|
@ -69,9 +69,16 @@ find -L . \
|
|||
\( -perm 666 -o -perm 664 -o -perm 640 -o -perm 600 -o -perm 444 \
|
||||
-o -perm 440 -o -perm 400 \) -exec chmod 644 {} \;
|
||||
|
||||
cmake -DCMAKE_INSTALL_PREFIX=/usr [-DGTK3=ON] .
|
||||
make
|
||||
make install DESTDIR=$PKG
|
||||
mkdir -p build
|
||||
cd build
|
||||
cmake \
|
||||
-DCMAKE_C_FLAGS:STRING="$SLKCFLAGS" \
|
||||
-DCMAKE_CXX_FLAGS:STRING="$SLKCFLAGS" \
|
||||
-DCMAKE_INSTALL_PREFIX=/usr \
|
||||
-DCMAKE_BUILD_TYPE=Release ..
|
||||
make
|
||||
make install DESTDIR=$PKG
|
||||
cd ..
|
||||
|
||||
find $PKG -print0 | xargs -0 file | grep -e "executable" -e "shared object" | grep ELF \
|
||||
| cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true
|
||||
|
|
|
@ -1,8 +1,8 @@
|
|||
PRGNAM="simpleburn"
|
||||
VERSION="1.7.3"
|
||||
VERSION="1.8.1"
|
||||
HOMEPAGE="http://simpleburn.tuxfamily.org/"
|
||||
DOWNLOAD="http://simpleburn.tuxfamily.org/IMG/gz/simpleburn-1.7.3.tar.gz"
|
||||
MD5SUM="aa8afe9575903e8e20e8a566c543c4f8"
|
||||
DOWNLOAD="http://simpleburn.tuxfamily.org/IMG/gz/simpleburn-1.8.1.tar.gz"
|
||||
MD5SUM="11cf5b9a69fda6c72b1ae1277fafa386"
|
||||
DOWNLOAD_x86_64=""
|
||||
MD5SUM_x86_64=""
|
||||
REQUIRES=""
|
||||
|
|
|
@ -5,8 +5,8 @@
|
|||
# You must make exactly 11 lines for the formatting to be correct. It's also
|
||||
# customary to leave one space after the ':' except on otherwise blank lines.
|
||||
|
||||
|-----handy-ruler------------------------------------------------------|
|
||||
simpleburn: simpleburn (CD / DVD burning and extraction tool)
|
||||
|-----handy-ruler------------------------------------------------------|
|
||||
simpleburn: simpleBurn (CD/DVD burning and extraction tool)
|
||||
simpleburn:
|
||||
simpleburn: SimpleBurn is a minimalistic application for burning and extracting
|
||||
simpleburn: CDs and DVDs. It basically is a Cdrtools frontend and is designed in
|
||||
|
|
Loading…
Reference in a new issue