wok-6.x annotate mousepad/receipt @ rev 18309
Up cookutils (750)
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Tue Aug 25 12:04:37 2015 +0200 (2015-08-25) |
parents | 380ffe05937a |
children | 2e544f80e288 |
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" |
al@17501 | 12 TAGS="text-editor" |
erjo@2071 | 13 |
pankso@12481 | 14 DEPENDS="libxfcegui4 libxfce4util startup-notification xorg-libXdamage util-linux-uuid" |
al@17501 | 15 BUILD_DEPENDS="libxfcegui4-dev libxfce4util-dev intltool startup-notification-dev \ |
pascal@12645 | 16 util-linux-uuid-dev gtk+-dev" |
pankso@9712 | 17 |
erjo@2071 | 18 # Rules to configure and make the package. |
erjo@2071 | 19 compile_rules() |
erjo@2071 | 20 { |
erjo@2071 | 21 cd $src |
erjo@2071 | 22 ./configure --prefix=/usr \ |
erjo@2071 | 23 --enable-debug=no \ |
erjo@2071 | 24 --mandir=/usr/share/man $CONFIGURE_ARGS && \ |
pascal@15000 | 25 make && make DESTDIR=$DESTDIR install |
erjo@2071 | 26 } |
erjo@2071 | 27 |
erjo@2071 | 28 # Rules to gen a SliTaz package suitable for Tazpkg. |
erjo@2071 | 29 genpkg_rules() |
erjo@2071 | 30 { |
erjo@2071 | 31 mkdir -p $fs/usr/share/locale |
erjo@2071 | 32 |
pascal@15000 | 33 cp -a $install/usr/bin $fs/usr |
pascal@15000 | 34 cp -a $install/usr/share/locale/fr $fs/usr/share/locale |
pascal@15000 | 35 cp -a $install/usr/share/pixmaps $fs/usr/share |
pascal@15000 | 36 cp -a $install/usr/share/applications $fs/usr/share |
erjo@2071 | 37 } |
erjo@2071 | 38 |