wok-6.x annotate gtklp/receipt @ rev 13127
liblrdf: update bdeps
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Thu Jul 05 10:11:24 2012 +0200 (2012-07-05) |
parents | 99241084b602 |
children | b81932a5d9af |
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@11568 | 21 sed -i 's/^gettextize .*/autopoint -f/' autogen.sh |
pascal@11550 | 22 chmod +x autogen.sh |
pascal@11550 | 23 ./autogen.sh |
pascal@11550 | 24 ./configure --prefix=/usr && |
pascal@11550 | 25 make && |
pascal@11550 | 26 make DESTDIR=$DESTDIR install || return |
pascal@11550 | 27 mkdir -p $DESTDIR/usr/share/applications |
pascal@11550 | 28 cat > $DESTDIR/usr/share/applications/gtklp.desktop <<EOT |
pascal@11550 | 29 [Desktop Entry] |
pascal@11550 | 30 Name=Printer Administration |
pascal@11550 | 31 Comment=$SHORT_DESC |
pascal@11550 | 32 Categories=Application;System; |
pascal@11550 | 33 Icon=printer |
pascal@11550 | 34 Exec=gtklp |
pascal@11550 | 35 Type=Application |
pascal@11550 | 36 StartupNotify=true |
pascal@11550 | 37 Terminal=false |
pascal@11550 | 38 EOT |
pascal@11550 | 39 cat > $DESTDIR/usr/share/applications/gtklpq.desktop <<EOT |
pascal@11550 | 40 [Desktop Entry] |
pascal@11550 | 41 Name=Printer Queue |
pascal@11550 | 42 Comment=$SHORT_DESC |
pascal@11550 | 43 Categories=Application;Utility; |
pascal@11550 | 44 Icon=printer |
pascal@11550 | 45 Exec=gtklpq |
pascal@11550 | 46 Type=Application |
pascal@11550 | 47 StartupNotify=true |
pascal@11550 | 48 Terminal=false |
pascal@11550 | 49 EOT |
pascal@11550 | 50 } |
pascal@11550 | 51 |
pascal@11550 | 52 # Rules to gen a SliTaz package suitable for Tazpkg. |
pascal@11550 | 53 genpkg_rules() |
pascal@11550 | 54 { |
pascal@11550 | 55 mkdir -p $fs/usr/share |
pascal@11550 | 56 cp -a $_pkg/usr/bin $fs/usr |
pascal@11550 | 57 cp -a $_pkg/usr/share/applications $fs/usr/share/ |
pascal@11550 | 58 } |