Quantcast
Channel: Themen - i-have-a-dreambox.com | Dreambox - Support
Viewing all articles
Browse latest Browse all 8093

Gestern, 20:45 - skin2ipk und plugin2ipk Tool (dreagalli)

$
0
0
Gestern, 20:45 - skin2ipk und plugin2ipk Tool (dreagalli)
Danke. Hat sich erledigt. Hab in einem anderen Board die Lösung von Dre bekommen:


Code:

#!/bin/sh
#
# default values
#
VERSION="0.1.0"
AUTHOR="Kerni"
ARCHITECTURE="all"
HOMEPAGE="www.i-have-a-dreambox.com"
PREFIX="enigma2-plugin-skin"

das würde ich mal ergänzen mit:

Code:

DEPENDS="..."

dann noch weiter unten:

Code:

echo "Package: $PREFIX-$SKINNAMELOWER" > $CONTROL
echo "Version: $VERSION" >> $CONTROL
echo "Description: Enigma2 Skin $SKINNAME by $AUTHOR" >> $CONTROL
echo "Section: extra" >> $CONTROL
echo "Priority: optional" >> $CONTROL
echo "Maintainer: $AUTHOR <$AUTHOR@$HOMEPAGE>" >> $CONTROL
echo "Architecture: $ARCHITECTURE" >> $CONTROL
echo "OE: $SKINNAMELOWER-$VERSION" >> $CONTROL
echo "Homepage: $HOMEPAGE" >> $CONTROL
echo "Depends:" >> $CONTROL
echo "Source: ftp://$HOMEPAGE/$AUTHOR/$SKINNAMELOWER-$VERSION.tar.gz" >> $CONTROL
echo "copying $SKINNAME skin"

Code:

echo "Depends:" >> $CONTROL

muss geändert werden auf:

Code:

echo "Depends: $DEPENDS" >> $CONTROL [zum Beitrag]

Viewing all articles
Browse latest Browse all 8093