wok annotate mousepad/receipt @ rev 6323
Up: imagemagick, imagemagick-dev to 6.6.4-2.
author | Christopher Rogers <slaxemulator@gmail.com> |
---|---|
date | Fri Sep 17 16:59:19 2010 +0000 (2010-09-17) |
parents | cde7fa93f1d6 |
children | 2841b4c72358 |
rev | line source |
---|---|
erjo@2071 | 1 # SliTaz package receipt. |
erjo@2071 | 2 |
erjo@2071 | 3 PACKAGE="mousepad" |
erjo@2071 | 4 VERSION="0.2.14" |
erjo@2071 | 5 CATEGORY="x-window" |
erjo@2071 | 6 SHORT_DESC="Xfce Text Editor" |
erjo@2071 | 7 MAINTAINER="erjo@slitaz.org" |
pascal@2519 | 8 DEPENDS="libxfcegui4 libxfce4util startup-notification xorg-libXdamage" |
erjo@2071 | 9 BUILD_DEPENDS="libxfcegui4-dev libxfce4util-dev" |
erjo@2071 | 10 TARBALL="$PACKAGE-$VERSION.tar.bz2" |
erjo@2071 | 11 WEB_SITE="http://www.xfce.org/" |
erjo@2071 | 12 WGET_URL="http://www.p0llux.be/xfce/xfce-4.4.3/src/$TARBALL" |
erjo@2071 | 13 |
erjo@2071 | 14 # Rules to configure and make the package. |
erjo@2071 | 15 compile_rules() |
erjo@2071 | 16 { |
erjo@2071 | 17 cd $src |
erjo@2071 | 18 ./configure --prefix=/usr \ |
erjo@2071 | 19 --enable-debug=no \ |
erjo@2071 | 20 --mandir=/usr/share/man $CONFIGURE_ARGS && \ |
erjo@2071 | 21 make && make DESTDIR=$PWD/_pkg install |
erjo@2071 | 22 } |
erjo@2071 | 23 |
erjo@2071 | 24 # Rules to gen a SliTaz package suitable for Tazpkg. |
erjo@2071 | 25 genpkg_rules() |
erjo@2071 | 26 { |
erjo@2071 | 27 mkdir -p $fs/usr/share/locale |
erjo@2071 | 28 |
erjo@2071 | 29 cp -a $_pkg/usr/bin $fs/usr |
erjo@2071 | 30 cp -a $_pkg/usr/share/locale/fr $fs/usr/share/locale |
erjo@2071 | 31 cp -a $_pkg/usr/share/pixmaps $fs/usr/share |
erjo@2071 | 32 cp -a $_pkg/usr/share/applications $fs/usr/share |
erjo@2071 | 33 } |
erjo@2071 | 34 |