wok view libsde-utils-gtk/receipt @ rev 19423

fwknop: typo
author Pascal Bellard <pascal.bellard@slitaz.org>
date Fri Sep 30 19:51:46 2016 +0200 (2016-09-30)
parents 911eba0b2038
children eeba7ab1dffe
line source
1 # SliTaz package receipt.
3 PACKAGE="libsde-utils-gtk"
4 VERSION="3c571f0"
5 CATEGORY="development"
6 SHORT_DESC="SDE GTK Utility Library"
7 MAINTAINER="al.bobylev@gmail.com"
8 LICENSE="GPL"
9 WEB_SITE="http://make-linux.org/"
10 TARBALL="$PACKAGE-$VERSION.tar.xz"
11 WGET_URL="http://git.make-linux.org/sde/$PACKAGE.git/snapshot/$TARBALL"
13 DEPENDS="gtk+ libsde-utils"
14 BUILD_DEPENDS="cmake gtk+-dev gdk-pixbuf-dev libsde-utils"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 rm -rf $src/.git
20 cmake -DCMAKE_INSTALL_PREFIX=/usr . &&
21 make &&
22 make install
23 }
25 # Rules to gen a SliTaz package suitable for Tazpkg.
26 genpkg_rules()
27 {
28 mkdir -p $fs/usr/lib
29 # cp -a $install/usr/lib/*.so* $fs/usr/lib
30 # cp -a $install/usr/share $fs/usr
31 cp -a $install/* $fs
32 }