wok-current view tazinst-gui/receipt @ rev 20273
linux: typo
| author | Pascal Bellard <pascal.bellard@slitaz.org> | 
|---|---|
| date | Sun Mar 18 17:13:32 2018 +0100 (2018-03-18) | 
| parents | 422e41a0b7ca | 
| children | 19b80830f90f | 
 line source
     1 # SliTaz package receipt.
     3 PACKAGE="tazinst-gui"
     4 VERSION="93"
     5 CATEGORY="base-system"
     6 SHORT_DESC="SliTaz installer (GUI frontend)"
     7 MAINTAINER="domcox@slitaz.org"
     8 LICENSE="GPL3"
     9 WANTED="tazinst"
    10 WEB_SITE="http://www.slitaz.org/"
    11 TAGS="slitaz"
    13 DEPENDS="tazpanel tazinst syslinux syslinux-extra"
    14 SIBLINGS="tazinst"
    16 # Rules to gen a SliTaz package suitable for Tazpkg.
    17 #
    18 genpkg_rules()
    19 {
    20 	cp -a $install/var $fs
    21 	chmod -R 0755 $fs/var/www/
    22 	chown -R root.root $fs
    23 	mkdir -p $fs/usr/share
    24 	cp -a $install/usr/share/applications $fs/usr/share
    25 	cp -a $install/usr/share/locale $fs/usr/share
    26 	cd $fs/usr/share/locale
    27 	for lang in *; do
    28 		rm -f $lang/*/slitaz-installer.mo
    29 		rm -f $lang/*/tazinst.mo
    30 	done
    31 }