wok-next annotate mousepad/receipt @ rev 19467
slitaz-i18n: give translations from yad-gtk2 package.
author | Aleksej Bobylev <al.bobylev@gmail.com> |
---|---|
date | Tue Oct 25 01:31:43 2016 +0300 (2016-10-25) |
parents | 5d53e8ccbc8d |
children | 016c8d2f8b37 |
rev | line source |
---|---|
erjo@2071 | 1 # SliTaz package receipt. |
erjo@2071 | 2 |
erjo@2071 | 3 PACKAGE="mousepad" |
psychomaniak@18536 | 4 VERSION="0.3.0" |
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 |
psychomaniak@18536 | 14 DEPENDS="gtk+ xorg-libXdamage dbus-glib gtksourceview" |
psychomaniak@18536 | 15 BUILD_DEPENDS="intltool gtk+-dev dbus-glib-dev gtksourceview-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 ./configure --prefix=/usr \ |
erjo@2071 | 21 --enable-debug=no \ |
erjo@2071 | 22 --mandir=/usr/share/man $CONFIGURE_ARGS && \ |
pascal@15000 | 23 make && make DESTDIR=$DESTDIR 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 |
pascal@15000 | 31 cp -a $install/usr/bin $fs/usr |
pascal@15000 | 32 cp -a $install/usr/share/locale/fr $fs/usr/share/locale |
psychomaniak@18536 | 33 cp -a $install/usr/share/locale/ru $fs/usr/share/locale |
pascal@15000 | 34 cp -a $install/usr/share/applications $fs/usr/share |
erjo@2071 | 35 } |
erjo@2071 | 36 |