wok-6.x diff snapper/receipt @ rev 21025
updated haproxy (1.4.24 -> 1.9.4)
author | Hans-G?nter Theisgen |
---|---|
date | Sun Mar 10 16:28:58 2019 +0100 (2019-03-10) |
parents | |
children | 0eeee42fc2a2 |
line diff
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/snapper/receipt Sun Mar 10 16:28:58 2019 +0100 1.3 @@ -0,0 +1,43 @@ 1.4 +# SliTaz package receipt. 1.5 + 1.6 +PACKAGE="snapper" 1.7 +VERSION="0.5.0" 1.8 +CATEGORY="base-system" 1.9 +SHORT_DESC="The ultimate snapshot tool for Linux." 1.10 +MAINTAINER="pascal.bellard@slitaz.org" 1.11 +LICENSE="GPL2" 1.12 +TARBALL="$PACKAGE-$VERSION.tar.bz2" 1.13 +WEB_SITE="http://snapper.io/" 1.14 +WGET_URL="ftp://ftp.suse.com/pub/projects/snapper/$TARBALL" 1.15 +CONFIG_FILES="/etc/snapper" 1.16 + 1.17 +DEPENDS="gcc49-lib-base libboost-thread libboost-system libxml2 acl attr zlib \ 1.18 +util-linux-mount util-linux-blkid util-linux-uuid dbus" 1.19 +BUILD_DEPENDS="util-linux-mount-dev lvm2 btrfs-dev pkg-config dbus-dev gcc49 \ 1.20 +libboost-dev libboost-thread-dev e2fsprogs-dev docbook-xsl" 1.21 + 1.22 +# Rules to configure and make the package. 1.23 +compile_rules() 1.24 +{ 1.25 + ./configure CC=gcc-49 CXX=g++-49 --prefix=/usr \ 1.26 + --infodir=/usr/share/info \ 1.27 + --mandir=/usr/share/man \ 1.28 + --disable-pam \ 1.29 + $CONFIGURE_ARGS && 1.30 + make && 1.31 + make DESTDIR=$DESTDIR install 1.32 +} 1.33 + 1.34 +# Rules to gen a SliTaz package suitable for Tazpkg. 1.35 +genpkg_rules() 1.36 +{ 1.37 + mkdir -p $fs/usr/share $fs/usr/lib 1.38 + cp -a $install/usr/bin $fs/usr 1.39 + cp -a $install/usr/sbin $fs/usr 1.40 + cp -a $install/usr/lib/*.so* $fs/usr/lib 1.41 + cp -a $install/usr/lib/zypp $fs/usr/lib 1.42 + cp -a $install/usr/lib/snapper $fs/usr/lib 1.43 + cp -a $install/usr/share/dbus* $fs/usr/share 1.44 + cp -a $install/usr/share/locale $fs/usr/share 1.45 + cp -a $install/etc $fs 1.46 +}