wok view parcellite/receipt @ rev 21659

updated parcellite (0.9.3 -> 1.2.1)
author Hans-G?nter Theisgen
date Fri May 31 17:29:36 2019 +0100 (2019-05-31)
parents 17e313b5b9c1
children 080c1dff8494
line source
1 # SliTaz package receipt
3 PACKAGE="parcellite"
4 VERSION="1.2.1"
5 CATEGORY="utilities"
6 SHORT_DESC="Lightweight GTK+ clipboard manager."
7 MAINTAINER="pankso@slitaz.org"
8 LICENSE="GPL3"
9 WEB_SITE="http://parcellite.sourceforge.net/"
11 TARBALL="$PACKAGE-$VERSION.tar.gz"
12 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
14 DEPENDS="gtk+ xorg-libX11 xorg-libXdamage"
15 BUILD_DEPENDS="xorg-libX11-dev gtk+-dev"
17 HOST_ARCH="i486 arm"
19 # Rules to configure and make the package.
20 compile_rules()
21 {
22 # Binutils 2.22 break many packages build without LDFLAGS set correctly.
23 export LDFLAGS="$LDFLAGS -Wl,--copy-dt-needed-entries -lX11"
24 # find . -name '*.[ch]*' | xargs sed -i 's|<glib/.*h|<glib.h|'
25 ./configure \
26 $CONFIGURE_ARGS &&
27 make &&
28 make install
29 }
31 # Rules to gen a SliTaz package suitable for Tazpkg.
32 genpkg_rules()
33 {
34 mkdir -p $fs/usr/share/applications
35 mkdir -p $fs/etc
37 cp -a $install/usr/bin $fs/usr
38 cp -a $stuff/skel $fs/etc
40 chown -R 0.0 $fs
41 }