wok-6.x annotate mousepad/receipt @ rev 12852
Add: vlc-plugin (2.0.0)
author | Dominique Corbex <domcox@slitaz.org> |
---|---|
date | Wed May 23 13:04:01 2012 +0200 (2012-05-23) |
parents | 73641efed1cc |
children | 380ffe05937a |
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" |
erjo@2071 | 8 TARBALL="$PACKAGE-$VERSION.tar.bz2" |
erjo@2071 | 9 WEB_SITE="http://www.xfce.org/" |
slaxemulator@8461 | 10 WGET_URL="http://archive.xfce.org/src/apps/$PACKAGE/${VERSION%.*}/$TARBALL" |
erjo@2071 | 11 |
pankso@12481 | 12 DEPENDS="libxfcegui4 libxfce4util startup-notification xorg-libXdamage util-linux-uuid" |
erjo@11501 | 13 BUILD_DEPENDS="libxfcegui4-dev libxfce4util-dev intltool startup-notification-dev |
pascal@12645 | 14 util-linux-uuid-dev gtk+-dev" |
pankso@9712 | 15 |
erjo@2071 | 16 # Rules to configure and make the package. |
erjo@2071 | 17 compile_rules() |
erjo@2071 | 18 { |
erjo@2071 | 19 cd $src |
erjo@2071 | 20 ./configure --prefix=/usr \ |
erjo@2071 | 21 --enable-debug=no \ |
erjo@2071 | 22 --mandir=/usr/share/man $CONFIGURE_ARGS && \ |
erjo@2071 | 23 make && make DESTDIR=$PWD/_pkg install |
erjo@2071 | 24 } |
erjo@2071 | 25 |
erjo@2071 | 26 # Rules to gen a SliTaz package suitable for Tazpkg. |
erjo@2071 | 27 genpkg_rules() |
erjo@2071 | 28 { |
erjo@2071 | 29 mkdir -p $fs/usr/share/locale |
erjo@2071 | 30 |
erjo@2071 | 31 cp -a $_pkg/usr/bin $fs/usr |
erjo@2071 | 32 cp -a $_pkg/usr/share/locale/fr $fs/usr/share/locale |
erjo@2071 | 33 cp -a $_pkg/usr/share/pixmaps $fs/usr/share |
erjo@2071 | 34 cp -a $_pkg/usr/share/applications $fs/usr/share |
erjo@2071 | 35 } |
erjo@2071 | 36 |