wok view util-linux/receipt @ rev 15000

Add some GPL2 licenses
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat Aug 10 17:00:38 2013 +0000 (2013-08-10)
parents a579549edab7
children 6531dff139b3
line source
1 # SliTaz package receipt.
3 PACKAGE="util-linux"
4 VERSION="2.21.1"
5 CATEGORY="meta"
6 SHORT_DESC="Util linux new generation (Meta package to build utility ans libs)."
7 MAINTAINER="pankso@slitaz.org"
8 LICENSE="GPL2"
9 SOURCE="util-linux"
10 TARBALL="$SOURCE-$VERSION.tar.xz"
11 WEB_SITE="http://freecode.com/projects/util-linux/"
12 WGET_URL="http://ftp.kernel.org/pub/linux/utils/util-linux/v2.21/$TARBALL"
13 HOST_ARCH="i486 arm"
14 LOCALE=""
16 DEPENDS=""
17 BUILD_DEPENDS="ncurses-dev zlib-dev"
19 # Rules to configure and make the package.
20 compile_rules()
21 {
22 cd $src
23 # Fix undeclared 'LINE_MAX'
24 case "$ARCH" in
25 arm) sed -i s'|LINE_MAX|25|' text-utils/*.c ;;
26 esac
27 ./configure \
28 --prefix=/usr \
29 --sysconfdir=/etc \
30 --with-fsprobe=builtin \
31 --enable-partx \
32 $CONFIGURE_ARGS &&
33 make && make install
34 }
36 # Rules to gen a SliTaz package suitable for Tazpkg.
37 genpkg_rules()
38 {
39 mkdir -p $fs/usr/bin
40 }