wok annotate mousepad/receipt @ rev 17485

Add hylafax
author Pascal Bellard <pascal.bellard@slitaz.org>
date Tue Dec 30 12:18:02 2014 +0100 (2014-12-30)
parents 235f5983e721
children 5d53e8ccbc8d
rev   line source
erjo@2071 1 # SliTaz package receipt.
erjo@2071 2
erjo@2071 3 PACKAGE="mousepad"
slaxemulator@8461 4 VERSION="0.2.16"
erjo@2071 5 CATEGORY="x-window"
erjo@2071 6 SHORT_DESC="Xfce Text Editor"
erjo@2071 7 MAINTAINER="erjo@slitaz.org"
pascal@15000 8 LICENSE="GPL2"
erjo@2071 9 TARBALL="$PACKAGE-$VERSION.tar.bz2"
erjo@2071 10 WEB_SITE="http://www.xfce.org/"
slaxemulator@8461 11 WGET_URL="http://archive.xfce.org/src/apps/$PACKAGE/${VERSION%.*}/$TARBALL"
erjo@2071 12
pankso@12481 13 DEPENDS="libxfcegui4 libxfce4util startup-notification xorg-libXdamage util-linux-uuid"
erjo@11501 14 BUILD_DEPENDS="libxfcegui4-dev libxfce4util-dev intltool startup-notification-dev
pascal@12645 15 util-linux-uuid-dev gtk+-dev"
pankso@9712 16
erjo@2071 17 # Rules to configure and make the package.
erjo@2071 18 compile_rules()
erjo@2071 19 {
erjo@2071 20 cd $src
erjo@2071 21 ./configure --prefix=/usr \
erjo@2071 22 --enable-debug=no \
erjo@2071 23 --mandir=/usr/share/man $CONFIGURE_ARGS && \
pascal@15000 24 make && make DESTDIR=$DESTDIR install
erjo@2071 25 }
erjo@2071 26
erjo@2071 27 # Rules to gen a SliTaz package suitable for Tazpkg.
erjo@2071 28 genpkg_rules()
erjo@2071 29 {
erjo@2071 30 mkdir -p $fs/usr/share/locale
erjo@2071 31
pascal@15000 32 cp -a $install/usr/bin $fs/usr
pascal@15000 33 cp -a $install/usr/share/locale/fr $fs/usr/share/locale
pascal@15000 34 cp -a $install/usr/share/pixmaps $fs/usr/share
pascal@15000 35 cp -a $install/usr/share/applications $fs/usr/share
erjo@2071 36 }
erjo@2071 37