wok-next diff nilfs-utils/receipt @ rev 19841
Up adwaita-icon-theme, at-spi2-atk, at-spi2-core, elementary-icon-theme, gtk+, gtk+3, hydroxygen-iconset, libepoxy, paper-icon-theme, slitaz-icons-elementary, slitaz-icons-hydroxygen, slitaz-icons-paper. Add faience-icon-theme.
author | Aleksej Bobylev <al.bobylev@gmail.com> |
---|---|
date | Thu Aug 17 16:45:06 2017 +0300 (2017-08-17) |
parents | de813e146c92 |
children | d43bf7aae921 |
line diff
1.1 --- a/nilfs-utils/receipt Fri Jul 17 22:23:02 2015 +0200 1.2 +++ b/nilfs-utils/receipt Thu Aug 17 16:45:06 2017 +0300 1.3 @@ -1,36 +1,42 @@ 1.4 -# SliTaz package receipt. 1.5 +# SliTaz package receipt v2. 1.6 1.7 PACKAGE="nilfs-utils" 1.8 -VERSION="2.2.3" 1.9 +VERSION="2.2.6" 1.10 CATEGORY="system-tools" 1.11 -SHORT_DESC="NILFS Filesystem user space tools." 1.12 +SHORT_DESC="NILFS Filesystem user space tools" 1.13 MAINTAINER="pascal.bellard@slitaz.org" 1.14 LICENSE="GPL2 LGPL2.1" 1.15 -TARBALL="$PACKAGE-$VERSION.tar.gz" 1.16 -WEB_SITE="https://github.com/nilfs-dev/nilfs-utils" 1.17 -WGET_URL="$WEB_SITE/archive/v$VERSION.tar.gz" 1.18 +WEB_SITE="http://nilfs.sourceforge.net/" 1.19 +#WGET_URL="https://github.com/nilfs-dev/nilfs-utils/" 1.20 1.21 -DEPENDS="util-linux-mount util-linux-blkid util-linux-uuid" 1.22 -BUILD_DEPENDS="wget autoconf automake libtool util-linux-mount-dev \ 1.23 -util-linux-blkid-dev util-linux-uuid-dev" 1.24 +TARBALL="$PACKAGE-$VERSION.tar.bz2" 1.25 +WGET_URL="http://nilfs.sourceforge.net/download/$TARBALL" # note, no $SF_MIRROR 1.26 + 1.27 +BUILD_DEPENDS="automake libtool util-linux-uuid-dev util-linux-mount-dev" 1.28 +SPLIT="nilfs-utils-dev" 1.29 1.30 # Rules to configure and make the package. 1.31 compile_rules() 1.32 { 1.33 - ./autogen.sh 1.34 - ./configure --prefix=/usr \ 1.35 + ./autogen.sh && 1.36 + ./configure \ 1.37 + --with-libmount \ 1.38 $CONFIGURE_ARGS && 1.39 - make && 1.40 - make DESTDIR=$DESTDIR install 1.41 + make && make install 1.42 } 1.43 1.44 # Rules to gen a SliTaz package suitable for Tazpkg. 1.45 genpkg_rules() 1.46 { 1.47 - mkdir -p $fs/usr/lib 1.48 - cp -a $install/etc $fs/ 1.49 - cp -a $install/sbin $fs/ 1.50 - cp -a $install/usr/bin $fs/usr/ 1.51 - cp -a $install/usr/sbin $fs/usr/ 1.52 - cp -a $install/usr/lib/*.so* $fs/usr/lib/ 1.53 + case $PACKAGE in 1.54 + *-utils) 1.55 + copy @std 1.56 + DEPENDS="util-linux-blkid util-linux-mount util-linux-uuid" 1.57 + CONFIG_FILES="/etc/nilfs_cleanerd.conf" 1.58 + ;; 1.59 + *-dev) 1.60 + copy @dev 1.61 + DEPENDS="nilfs-utils util-linux-uuid-dev" 1.62 + ;; 1.63 + esac 1.64 }