wok-current annotate util-linux-ng/receipt @ rev 6520
Up: util-linux-ng to 2.18.
author | Christopher Rogers <slaxemulator@gmail.com> |
---|---|
date | Sat Oct 02 16:34:03 2010 +0000 (2010-10-02) |
parents | 964f5d384827 |
children | 00973bd72b33 |
rev | line source |
---|---|
pankso@3104 | 1 # SliTaz package receipt. |
pankso@3104 | 2 |
pankso@3104 | 3 PACKAGE="util-linux-ng" |
slaxemulator@6520 | 4 VERSION="2.18" |
pankso@3476 | 5 CATEGORY="meta" |
pankso@3104 | 6 SHORT_DESC="Util linux new generation (Meta package to build utility ans libs)." |
pankso@3104 | 7 MAINTAINER="pankso@slitaz.org" |
pankso@3104 | 8 TARBALL="$PACKAGE-$VERSION.tar.bz2" |
pankso@3104 | 9 DEPENDS="glibc-base" |
slaxemulator@6520 | 10 BUILD_DEPENDS="slitaz-toolchain ncurses-dev e2fsprogs-dev zlib-dev" |
pankso@3104 | 11 WEB_SITE="http://kernel.org/~kzak/util-linux-ng/" |
slaxemulator@6520 | 12 WGET_URL="ftp://ftp.kernel.org/pub/linux/utils/util-linux-ng/v${VERSION%*}/$TARBALL" |
pankso@3104 | 13 LOCALE="" |
pankso@3104 | 14 |
pankso@3104 | 15 # Rules to configure and make the package. |
pankso@3104 | 16 compile_rules() |
pankso@3104 | 17 { |
pankso@3104 | 18 cd $src |
slaxemulator@6520 | 19 # fix findmnt |
slaxemulator@6520 | 20 patch -p1 -i ../stuff/fix-findmnt.patch |
slaxemulator@6520 | 21 # fix cfdisk partition changing, included in next upstream release |
slaxemulator@6520 | 22 patch -p1 -i ../stuff/util-linux-ng-cfdisk.patch |
slaxemulator@6520 | 23 |
pankso@3104 | 24 if ! grep 'tty:x:4:' /etc/group; then |
pankso@3104 | 25 addgroup -g 4 tty |
pankso@3104 | 26 fi |
pascal@6113 | 27 grep -qs 'define u8' fdisk/fdisksunlabel.c || |
pascal@6113 | 28 sed -i 's|#include <scsi/scsi.h>|#define u8 __u8\n&|' fdisk/fdisksunlabel.c |
pankso@3104 | 29 ./configure \ |
pankso@3104 | 30 --prefix=/usr \ |
pankso@3104 | 31 --sysconfdir=/etc \ |
pankso@3104 | 32 --with-fsprobe=builtin \ |
pankso@3104 | 33 --enable-partx \ |
pankso@3104 | 34 $CONFIGURE_ARGS && |
pankso@3104 | 35 make && |
pankso@3104 | 36 make DESTDIR=$PWD/_pkg install |
pankso@3104 | 37 } |
pankso@3104 | 38 |
pankso@3104 | 39 # Rules to gen a SliTaz package suitable for Tazpkg. |
pankso@3104 | 40 genpkg_rules() |
pankso@3104 | 41 { |
pankso@3104 | 42 mkdir -p $fs/usr/bin |
pankso@3104 | 43 } |