wok-current view gnome-vfs-monikers/receipt @ rev 23722
updated urbackup-server (2.3.8 -> 2.4.12)
| author | Hans-Günter Theisgen | 
|---|---|
| date | Thu Apr 30 14:18:52 2020 +0100 (2020-04-30) | 
| parents | c86e41198e76 | 
| children | 6831608a1b2a | 
 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="https://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 }