mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-21 19:42:24 +01:00
system/tkdvd: Added to 13.0 repository
This commit is contained in:
parent
df1a04d3ff
commit
97ff6c00c7
6 changed files with 92 additions and 0 deletions
2
system/tkdvd/README
Normal file
2
system/tkdvd/README
Normal file
|
@ -0,0 +1,2 @@
|
|||
TkDVD is a GUI to dvd+rw-tools and cdrecord. It allows burning
|
||||
CDs and DVDs easily.
|
19
system/tkdvd/slack-desc
Normal file
19
system/tkdvd/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-------------------------------------------------------|
|
||||
tkdvd: tkdvd (Disc burning program)
|
||||
tkdvd:
|
||||
tkdvd: TkDVD is a GUI to dvd+rw-tools and cdrecord. It allows burning
|
||||
tkdvd: CDs and DVDs easily.
|
||||
tkdvd:
|
||||
tkdvd: Homepage: http://www.exit1.org/tkdvd
|
||||
tkdvd:
|
||||
tkdvd:
|
||||
tkdvd:
|
||||
tkdvd:
|
||||
tkdvd:
|
52
system/tkdvd/tkdvd.SlackBuild
Normal file
52
system/tkdvd/tkdvd.SlackBuild
Normal file
|
@ -0,0 +1,52 @@
|
|||
#!/bin/sh
|
||||
|
||||
# Slackware build script for tkdvd
|
||||
|
||||
# Written by Luis Henrique <lmello.009@gmail.com>
|
||||
|
||||
PRGNAM=tkdvd
|
||||
VERSION=${VERSION:-4.0.9}
|
||||
ARCH=${ARCH:-i486}
|
||||
BUILD=${BUILD:-1}
|
||||
TAG=${TAG:-_SBo}
|
||||
|
||||
CWD=$(pwd)
|
||||
TMP=${TMP:-/tmp/SBo}
|
||||
PKG=$TMP/package-$PRGNAM
|
||||
OUTPUT=${OUTPUT:-/tmp}
|
||||
|
||||
PREFIX=$PKG/usr/bin
|
||||
|
||||
set -e # Exit on most errors
|
||||
|
||||
rm -rf $PKG
|
||||
mkdir -p $TMP $PKG $OUTPUT $PREFIX
|
||||
cd $TMP
|
||||
rm -rf $PRGNAM-$VERSION
|
||||
tar xvf $CWD/$PRGNAM-$VERSION.tar.gz
|
||||
cd $PRGNAM
|
||||
chown -R root:root .
|
||||
find . \
|
||||
\( -perm 777 -o -perm 775 -o -perm 711 -o -perm 555 -o -perm 511 \) \
|
||||
-exec chmod 755 {} \; -o \
|
||||
\( -perm 666 -o -perm 664 -o -perm 600 -o -perm 444 -o -perm 440 -o -perm 400 \) \
|
||||
-exec chmod 644 {} \;
|
||||
|
||||
./configure --prefix=$PREFIX
|
||||
make
|
||||
make install
|
||||
|
||||
mkdir -p $PKG/usr/share/{applications,pixmaps}
|
||||
cat $CWD/tkdvd.desktop > $PKG/usr/share/applications/tkdvd.desktop
|
||||
cat $CWD/tkdvd.png > $PKG/usr/share/pixmaps/tkdvd.png
|
||||
|
||||
mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
|
||||
cp -a COPYING ChangeLog FAQ INSTALL README TODO \
|
||||
$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}
|
9
system/tkdvd/tkdvd.desktop
Normal file
9
system/tkdvd/tkdvd.desktop
Normal file
|
@ -0,0 +1,9 @@
|
|||
[Desktop Entry]
|
||||
Version=1.0
|
||||
Name=tkdvd
|
||||
GenericName=Disc burning program
|
||||
Comment=GUI to dvd+rw-tools and cdrecord
|
||||
Type=Application
|
||||
Exec=TkDVD.sh
|
||||
Icon=tkdvd
|
||||
Categories=Utility;
|
10
system/tkdvd/tkdvd.info
Normal file
10
system/tkdvd/tkdvd.info
Normal file
|
@ -0,0 +1,10 @@
|
|||
PRGNAM="tkdvd"
|
||||
VERSION="4.0.9"
|
||||
HOMEPAGE="http://regis.damongeot.free.fr/tkdvd"
|
||||
DOWNLOAD="http://regis.damongeot.free.fr/tkdvd/dl/tkdvd-4.0.9.tar.gz"
|
||||
MD5SUM="b6cf7fd3518472ffa4e56f06a93fbfb1"
|
||||
DOWNLOAD_x86_64=""
|
||||
MD5SUM_x86_64=""
|
||||
MAINTAINER="Luis Henrique"
|
||||
EMAIL="lmello.009@gmail.com"
|
||||
APPROVED="rworkman"
|
BIN
system/tkdvd/tkdvd.png
Normal file
BIN
system/tkdvd/tkdvd.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 2.5 KiB |
Loading…
Reference in a new issue