wok-6.x rev 22096
Up fsarchiver (0.8.5)
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Fri Nov 01 10:48:55 2019 +0100 (2019-11-01) |
parents | 7f2789b79625 |
children | 93ff6b5d254b |
files | asterisk/receipt dfu-util/receipt fsarchiver/receipt sed/receipt |
line diff
1.1 --- a/asterisk/receipt Thu Oct 31 18:29:38 2019 +0100 1.2 +++ b/asterisk/receipt Fri Nov 01 10:48:55 2019 +0100 1.3 @@ -17,7 +17,7 @@ 1.4 speex iksemel spandsp tiff radiusclient-ng nbs freetds libpostgresqlclient \ 1.5 libmysqlclient libunixODBC popt dahdi libpri lua libcap attr net-snmp \ 1.6 portaudio sqlite libkrb5 libcomerr3 libsdl libsdl-image libssl libxml2 bluez \ 1.7 -libldap libical neon util-linux-uuid opus code2" 1.8 +libldap libical neon util-linux-uuid opus codec2" 1.9 BUILD_DEPENDS="gtk+-dev libxml2-dev postgresql-dev libsdl-dev ncurses-dev \ 1.10 gmime gmime-dev unixODBC-dev unixODBC openldap-dev openldap \ 1.11 dahdi-linux dahdi-tools dahdi-dev \ 1.12 @@ -25,7 +25,7 @@ 1.13 openssl-dev lua-dev lua libpri-dev bluez-dev bluez portaudio-dev alsa-lib-dev \ 1.14 libsdl-image-dev net-snmp iksemel libical-dev curl-dev libcap-dev iksemel-dev \ 1.15 jack-audio-connection-kit-dev radiusclient-ng-dev radiusclient-ng \ 1.16 -libvorbis-dev speex-dev opus-dev code2-dev autoconf automake libtool" 1.17 +libvorbis-dev speex-dev opus-dev codec2-dev autoconf automake libtool" 1.18 1.19 # Rules to configure and make the package. 1.20 #
2.1 --- a/dfu-util/receipt Thu Oct 31 18:29:38 2019 +0100 2.2 +++ b/dfu-util/receipt Fri Nov 01 10:48:55 2019 +0100 2.3 @@ -16,6 +16,7 @@ 2.4 # Rules to configure and make the package. 2.5 compile_rules() 2.6 { 2.7 + export CFLAGS="$CFLAGS -I/usr/include/libusb-1.0" 2.8 ./configure \ 2.9 --prefix=/usr \ 2.10 $CONFIGURE_ARGS &&
3.1 --- a/fsarchiver/receipt Thu Oct 31 18:29:38 2019 +0100 3.2 +++ b/fsarchiver/receipt Fri Nov 01 10:48:55 2019 +0100 3.3 @@ -1,24 +1,25 @@ 3.4 # SliTaz package receipt. 3.5 3.6 PACKAGE="fsarchiver" 3.7 -VERSION="0.6.12" 3.8 +VERSION="0.8.5" 3.9 CATEGORY="utilities" 3.10 MAINTAINER="jozee@slitaz.org" 3.11 LICENSE="GPL2" 3.12 SHORT_DESC="A safe and flexible file-system backup and deployment tool" 3.13 WEB_SITE="http://www.fsarchiver.org/" 3.14 TARBALL="$PACKAGE-$VERSION.tar.gz" 3.15 -WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL" 3.16 +WGET_URL="https://github.com/fdupoux/fsarchiver/releases/download/$VERSION/$TARBALL" 3.17 TAGS="compression filesystem archive backup" 3.18 3.19 DEPENDS="bzip2 e2fsprogs lzo xz libgcrypt liblzma util-linux-blkid \ 3.20 -libcomerr3 zlib" 3.21 +libcomerr3 zlib lz4-lib zstd" 3.22 BUILD_DEPENDS="bzip2-dev e2fsprogs-dev libgcrypt-dev lzo-dev liblzma-dev \ 3.23 -util-linux-blkid-dev attr-dev util-linux-uuid-dev zlib-dev pkg-config" 3.24 +util-linux-blkid-dev attr-dev util-linux-uuid-dev zlib-dev pkg-config \ 3.25 +lz4-dev zstd-dev" 3.26 3.27 # Rules to configure and make the package. 3.28 -compile_rules() { 3.29 - cd $src 3.30 +compile_rules() 3.31 +{ 3.32 ./configure --prefix=/usr $CONFIGURE_ARGS && 3.33 make && 3.34 make DESTDIR="$DESTDIR" install
4.1 --- a/sed/receipt Thu Oct 31 18:29:38 2019 +0100 4.2 +++ b/sed/receipt Fri Nov 01 10:48:55 2019 +0100 4.3 @@ -34,9 +34,11 @@ 4.4 post_install() 4.5 { 4.6 [ "$(readlink $1/bin/sed)" = "busybox" ] && mv $1/bin/sed $1/bin/sed-bb 4.7 + ln -s /usr/bin/sed $1/bin/sed 4.8 } 4.9 4.10 pre_remove() 4.11 { 4.12 + rm $1/bin/sed 4.13 [ -e $1/bin/sed-bb ] && mv $1/bin/sed-bb $1/bin/sed 4.14 }