wok-6.x annotate gtklp/receipt @ rev 15627
libxml2: update bdeps
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Sun Dec 08 18:53:33 2013 +0000 (2013-12-08) |
parents | 7896f0694ef6 |
children | aee33ab23215 |
rev | line source |
---|---|
pascal@11550 | 1 # SliTaz package receipt. |
pascal@11550 | 2 |
pascal@11550 | 3 PACKAGE="gtklp" |
pascal@15160 | 4 VERSION="1.3.0" |
pascal@11550 | 5 CATEGORY="utilities" |
pascal@11550 | 6 MAINTAINER="jozee@slitaz.org" |
pascal@15002 | 7 LICENSE="GPL2" |
pascal@11550 | 8 SHORT_DESC="Tools to use and administrate CUPS" |
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@13757 | 15 BUILD_DEPENDS="cups-dev gtk+-dev autoconf automake libtool" |
pascal@11550 | 16 |
pascal@11550 | 17 # Rules to configure and make the package. |
pascal@11550 | 18 |
pascal@15160 | 19 compile_rules() |
pascal@15160 | 20 { |
pascal@15160 | 21 cd $src |
pascal@15160 | 22 sed -i 's/^gettextize .*/autopoint -f/' autogen.sh |
pascal@15160 | 23 chmod +x autogen.sh |
pascal@15160 | 24 ./autogen.sh |
pascal@15160 | 25 ./configure --prefix=/usr && |
pascal@15160 | 26 make && |
pascal@15160 | 27 make DESTDIR=$DESTDIR install || return |
pascal@15160 | 28 mkdir -p $DESTDIR/usr/share/applications |
pascal@15160 | 29 cat > $DESTDIR/usr/share/applications/gtklp.desktop <<EOT |
pascal@11550 | 30 [Desktop Entry] |
pascal@11550 | 31 Name=Printer Administration |
pascal@11550 | 32 Comment=$SHORT_DESC |
pascal@11550 | 33 Categories=Application;System; |
pascal@11550 | 34 Icon=printer |
pascal@11550 | 35 Exec=gtklp |
pascal@11550 | 36 Type=Application |
pascal@11550 | 37 StartupNotify=true |
pascal@11550 | 38 Terminal=false |
pascal@11550 | 39 EOT |
pascal@15160 | 40 cat > $DESTDIR/usr/share/applications/gtklpq.desktop <<EOT |
pascal@11550 | 41 [Desktop Entry] |
pascal@11550 | 42 Name=Printer Queue |
pascal@11550 | 43 Comment=$SHORT_DESC |
pascal@11550 | 44 Categories=Application;Utility; |
pascal@11550 | 45 Icon=printer |
pascal@11550 | 46 Exec=gtklpq |
pascal@11550 | 47 Type=Application |
pascal@11550 | 48 StartupNotify=true |
pascal@11550 | 49 Terminal=false |
pascal@11550 | 50 EOT |
pascal@11550 | 51 } |
pascal@11550 | 52 |
pascal@11550 | 53 # Rules to gen a SliTaz package suitable for Tazpkg. |
pascal@11550 | 54 genpkg_rules() |
pascal@11550 | 55 { |
pascal@11550 | 56 mkdir -p $fs/usr/share |
pascal@15002 | 57 cp -a $install/usr/bin $fs/usr |
pascal@15002 | 58 cp -a $install/usr/share/applications $fs/usr/share/ |
pascal@11550 | 59 } |