wok-current rev 18218
Add nilfs-utils
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Fri Jul 17 22:23:02 2015 +0200 (2015-07-17) |
parents | a4d79a7fa68e |
children | 2d1a6601c331 |
files | nilfs-utils-dev/receipt nilfs-utils/receipt |
line diff
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/nilfs-utils-dev/receipt Fri Jul 17 22:23:02 2015 +0200 1.3 @@ -0,0 +1,20 @@ 1.4 +# SliTaz package receipt. 1.5 + 1.6 +PACKAGE="nilfs-utils-dev" 1.7 +VERSION="2.2.3" 1.8 +CATEGORY="develpment" 1.9 +SHORT_DESC="NILFS Filesystem develpement. files" 1.10 +MAINTAINER="pascal.bellard@slitaz.org" 1.11 +LICENSE="GPL2 LGPL2.1" 1.12 +WEB_SITE="https://github.com/nilfs-dev/nilfs-utils" 1.13 +WANTED="nilfs-utils" 1.14 + 1.15 +DEPENDS="nilfs-utils" 1.16 + 1.17 +# Rules to gen a SliTaz package suitable for Tazpkg. 1.18 +genpkg_rules() 1.19 +{ 1.20 + mkdir -p $fs/usr/lib 1.21 + cp -a $install/usr/include $fs/usr/ 1.22 + cp -a $install/usr/lib/*a $fs/usr/lib/ 1.23 +}
2.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 2.2 +++ b/nilfs-utils/receipt Fri Jul 17 22:23:02 2015 +0200 2.3 @@ -0,0 +1,36 @@ 2.4 +# SliTaz package receipt. 2.5 + 2.6 +PACKAGE="nilfs-utils" 2.7 +VERSION="2.2.3" 2.8 +CATEGORY="system-tools" 2.9 +SHORT_DESC="NILFS Filesystem user space tools." 2.10 +MAINTAINER="pascal.bellard@slitaz.org" 2.11 +LICENSE="GPL2 LGPL2.1" 2.12 +TARBALL="$PACKAGE-$VERSION.tar.gz" 2.13 +WEB_SITE="https://github.com/nilfs-dev/nilfs-utils" 2.14 +WGET_URL="$WEB_SITE/archive/v$VERSION.tar.gz" 2.15 + 2.16 +DEPENDS="util-linux-mount util-linux-blkid util-linux-uuid" 2.17 +BUILD_DEPENDS="wget autoconf automake libtool util-linux-mount-dev \ 2.18 +util-linux-blkid-dev util-linux-uuid-dev" 2.19 + 2.20 +# Rules to configure and make the package. 2.21 +compile_rules() 2.22 +{ 2.23 + ./autogen.sh 2.24 + ./configure --prefix=/usr \ 2.25 + $CONFIGURE_ARGS && 2.26 + make && 2.27 + make DESTDIR=$DESTDIR install 2.28 +} 2.29 + 2.30 +# Rules to gen a SliTaz package suitable for Tazpkg. 2.31 +genpkg_rules() 2.32 +{ 2.33 + mkdir -p $fs/usr/lib 2.34 + cp -a $install/etc $fs/ 2.35 + cp -a $install/sbin $fs/ 2.36 + cp -a $install/usr/bin $fs/usr/ 2.37 + cp -a $install/usr/sbin $fs/usr/ 2.38 + cp -a $install/usr/lib/*.so* $fs/usr/lib/ 2.39 +}