wok view mousepad/receipt @ rev 15353

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