wok-next view reiserfsprogs/receipt @ rev 20845

Add neofetch, tcl2c-fork; build two versions of tklauncher (using tcl2c and tcl2c-fork) with different warnings
author Aleksej Bobylev <al.bobylev@gmail.com>
date Sat Jun 23 09:45:42 2018 +0300 (2018-06-23)
parents 0e8dadf052b9
children f48456621a9d
line source
1 # SliTaz package receipt v2.
3 PACKAGE="reiserfsprogs"
4 VERSION="3.6.27"
5 CATEGORY="system-tools"
6 SHORT_DESC="ReiserFS tools"
7 MAINTAINER="erjo@slitaz.org"
8 LICENSE="GPL2"
9 WEB_SITE="http://www.sfr-fresh.com/linux/misc/"
10 LFS="http://www.linuxfromscratch.org/blfs/view/stable/postlfs/reiserfs.html"
12 TARBALL="$PACKAGE-$VERSION.tar.xz"
13 WGET_URL="https://www.kernel.org/pub/linux/kernel/people/jeffm/reiserfsprogs/v$VERSION/$TARBALL"
15 BUILD_DEPENDS="util-linux-uuid-dev libcomerr-dev acl-dev"
16 SPLIT="reiserfsprogs-dev"
18 compile_rules(){
19 ./configure \
20 --sbindir=/sbin \
21 $CONFIGURE_ARGS &&
22 fix libtool &&
23 make &&
24 make install
25 }
27 genpkg_rules() {
28 case $PACKAGE in
29 reiserfsprogs)
30 copy @std
31 DEPENDS="libcomerr util-linux-uuid linux-reiserfs"
32 TAGS="filesystem reiserfs"
33 ;;
34 *-dev)
35 copy @dev
36 DEPENDS="reiserfsprogs libcomerr util-linux-uuid-dev"
37 ;;
38 esac
39 }