wok-6.x annotate gtklp/receipt @ rev 11550
Add gtklp form wok-undigest
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Sun Dec 25 15:18:57 2011 +0100 (2011-12-25) |
parents | |
children | dbf89b0ec274 |
rev | line source |
---|---|
pascal@11550 | 1 # SliTaz package receipt. |
pascal@11550 | 2 |
pascal@11550 | 3 PACKAGE="gtklp" |
pascal@11550 | 4 VERSION="1.2.8" |
pascal@11550 | 5 CATEGORY="utilities" |
pascal@11550 | 6 MAINTAINER="jozee@slitaz.org" |
pascal@11550 | 7 SHORT_DESC="Tools to use and administrate CUPS" |
pascal@11550 | 8 BUILD_DEPENDS=" gtk+-dev autoconf automake" |
pascal@11550 | 9 WEB_SITE="http://gtklp.sourceforge.net/" |
pascal@11550 | 10 TARBALL="$PACKAGE-$VERSION.src.tar.gz" |
pascal@11550 | 11 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL" |
pascal@11550 | 12 TAGS="" |
pascal@11550 | 13 |
pascal@11550 | 14 DEPENDS="cups gtk+" |
pascal@11550 | 15 BUILD_DEPENDS="cups-dev gtk+-dev" |
pascal@11550 | 16 |
pascal@11550 | 17 # Rules to configure and make the package. |
pascal@11550 | 18 |
pascal@11550 | 19 compile_rules() { |
pascal@11550 | 20 cd $src |
pascal@11550 | 21 chmod +x autogen.sh |
pascal@11550 | 22 ./autogen.sh |
pascal@11550 | 23 ./configure --prefix=/usr && |
pascal@11550 | 24 make && |
pascal@11550 | 25 make DESTDIR=$DESTDIR install || return |
pascal@11550 | 26 mkdir -p $DESTDIR/usr/share/applications |
pascal@11550 | 27 cat > $DESTDIR/usr/share/applications/gtklp.desktop <<EOT |
pascal@11550 | 28 [Desktop Entry] |
pascal@11550 | 29 Name=Printer Administration |
pascal@11550 | 30 Comment=$SHORT_DESC |
pascal@11550 | 31 Categories=Application;System; |
pascal@11550 | 32 Icon=printer |
pascal@11550 | 33 Exec=gtklp |
pascal@11550 | 34 Type=Application |
pascal@11550 | 35 StartupNotify=true |
pascal@11550 | 36 Terminal=false |
pascal@11550 | 37 EOT |
pascal@11550 | 38 cat > $DESTDIR/usr/share/applications/gtklpq.desktop <<EOT |
pascal@11550 | 39 [Desktop Entry] |
pascal@11550 | 40 Name=Printer Queue |
pascal@11550 | 41 Comment=$SHORT_DESC |
pascal@11550 | 42 Categories=Application;Utility; |
pascal@11550 | 43 Icon=printer |
pascal@11550 | 44 Exec=gtklpq |
pascal@11550 | 45 Type=Application |
pascal@11550 | 46 StartupNotify=true |
pascal@11550 | 47 Terminal=false |
pascal@11550 | 48 EOT |
pascal@11550 | 49 } |
pascal@11550 | 50 |
pascal@11550 | 51 # Rules to gen a SliTaz package suitable for Tazpkg. |
pascal@11550 | 52 genpkg_rules() |
pascal@11550 | 53 { |
pascal@11550 | 54 mkdir -p $fs/usr/share |
pascal@11550 | 55 cp -a $_pkg/usr/bin $fs/usr |
pascal@11550 | 56 cp -a $_pkg/usr/share/applications $fs/usr/share/ |
pascal@11550 | 57 } |