wok annotate mousepad/receipt @ rev 20729
updated avfs (1.0.1 -> 1.0.6)
author | Hans-G?nter Theisgen |
---|---|
date | Sat Feb 09 15:27:48 2019 +0100 (2019-02-09) |
parents | 2e544f80e288 |
children | c6d913047a31 |
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" |
pascal@20669 | 10 WEB_SITE="https://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 |