wok-current rev 15686
Fix wrong name for debootstrap
author | Stanislas Leduc <shann@slitaz.org> |
---|---|
date | Sat Dec 21 07:38:57 2013 +0100 (2013-12-21) |
parents | 5ece3df55687 |
children | a20b13870b13 |
files | debootstrap/receipt |
line diff
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/debootstrap/receipt Sat Dec 21 07:38:57 2013 +0100 1.3 @@ -0,0 +1,21 @@ 1.4 +# SliTaz package receipt 1.5 + 1.6 +PACKAGE="debootstrap" 1.7 +VERSION="1.0.48" 1.8 +CATEGORY="misc" 1.9 +SHORT_DESC="Bootstrap a basic Debian system" 1.10 +MAINTAINER="shann@slitaz.org" 1.11 +TARBALL="$PACKAGE-$VERSION.tar.gz" 1.12 +WEB_SITE="https://wiki.debian.org/Debootstrap" 1.13 +WGET_URL="http://people.slitaz.org/~shann/packages/$PACKAGE/$TARBALL" 1.14 + 1.15 +DEPENDS="dpkg" 1.16 + 1.17 +# Rules to gen a SliTaz package suitable for Tazpkg. 1.18 +genpkg_rules() 1.19 +{ 1.20 + cp -a $src/etc/* $fs/etc 1.21 + cp -a $src/sbin/* $fs/sbin 1.22 + cp -a $src/usr/* $fs/usr 1.23 + chown -R root.root $fs 1.24 +}