wok view gnome-vfs-monikers/receipt @ rev 20422

Strip comments
author Aleksej Bobylev <al.bobylev@gmail.com>
date Wed Aug 08 22:36:22 2018 +0300 (2018-08-08)
parents d5aadb9e3943
children 6e8b1bcb30e2
line source
1 # SliTaz package receipt.
3 PACKAGE="gnome-vfs-monikers"
4 VERSION="2.15.3"
5 CATEGORY="x-window"
6 SHORT_DESC="GNOME Bonobo monikers"
7 MAINTAINER="erjo@slitaz.org"
8 LICENSE="GPL2"
9 TARBALL="$PACKAGE-$VERSION.tar.bz2"
10 WEB_SITE="http://www.gnome.org"
11 WGET_URL="http://ftp.gnome.org/pub/gnome/sources/$PACKAGE/${VERSION%.*}/$TARBALL"
13 DEPENDS="gnome-vfs libbonobo"
14 BUILD_DEPENDS="gnome-vfs-dev libbonobo-dev glib-dev ORBit2-dev dbus-glib-dev"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 cd $src
20 export CFLAGS="-I/usr/include/libbonobo-2.0 -I/usr/include/glib-2.0 \
21 -I/usr/lib/glib-2.0/include -I/usr/include/bonobo-activation-2.0 \
22 -I/usr/include/orbit-2.0 -I/usr/include/gnome-vfs-2.0"
23 ./configure \
24 --prefix=/usr \
25 --infodir=/usr/share/info \
26 --mandir=/usr/share/man \
27 $CONFIGURE_ARGS &&
28 make && make DESTDIR=$DESTDIR install
29 }
31 # Rules to gen a SliTaz package suitable for Tazpkg.
32 genpkg_rules()
33 {
34 mkdir -p $fs/usr/
35 cp -a $install/usr/lib $fs/usr
37 # Clean unwated files
38 cd $fs/usr/lib ; find . -name "*.*a" -exec rm -f {} \;
40 # Strip all
41 find . -name "*.so" -exec strip -s {} \;
42 }